From 8005100b2e06bab32db6aeb0572eac9faac2ab7b Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 20 Mar 2010 16:34:58 -0400 Subject: build: fixed REPLACE_GETPASS --- lib/replace/wscript | 4 ++-- 1 file 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; }''', -- cgit