summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source4/SConstruct2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/SConstruct b/source4/SConstruct
index 1d1a945d73..9a219bf036 100644
--- a/source4/SConstruct
+++ b/source4/SConstruct
@@ -131,6 +131,6 @@ if hostenv['configh']:
def create_config_h(env,target,source):
pass #FIXME
hostenv.Command('include/config.h',[],create_config_h)
- hostenv.Append(CPPDEFINES = {HAVE_CONFIG_H: 1})
+ hostenv.Append(CPPDEFINES = {'HAVE_CONFIG_H': 1})
else:
[hostenv.Append(CPPDEFINES = {p: defines[p]}) for p in defines]