summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-03-20 16:34:58 -0400
committerAndrew Tridgell <tridge@samba.org>2010-04-06 20:26:56 +1000
commit8005100b2e06bab32db6aeb0572eac9faac2ab7b (patch)
tree4a025ca0e473de313639f423f9b3ac7525d5f3fe /lib
parentbfc17535144b9f1800d7a35a60473e08ad4093bc (diff)
downloadsamba-8005100b2e06bab32db6aeb0572eac9faac2ab7b.tar.gz
samba-8005100b2e06bab32db6aeb0572eac9faac2ab7b.tar.bz2
samba-8005100b2e06bab32db6aeb0572eac9faac2ab7b.zip
build: fixed REPLACE_GETPASS
Diffstat (limited to 'lib')
-rw-r--r--lib/replace/wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/replace/wscript b/lib/replace/wscript
index e1ac8b9ba9..30c1f129aa 100644
--- a/lib/replace/wscript
+++ b/lib/replace/wscript
@@ -312,8 +312,8 @@ def configure(conf):
if conf.CHECK_FUNCS('getpass getpassphrase'):
# if we have both, then we prefer getpassphrase
- conf.DEFINE(REPLACE_GETPASS_BY_GETPASSPHRASE, 1)
- conf.DEFINE(REPLACE_GETPASS, 1)
+ conf.DEFINE('REPLACE_GETPASS_BY_GETPASSPHRASE', 1)
+ conf.DEFINE('REPLACE_GETPASS', 1)
conf.CHECK_CODE('''#include "getpass.c"
int main(void) { return 0; }''',