From 60cb7a42aa5a1cef0e65dee0a8efbde9341dcaf9 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Wed, 21 Sep 2005 04:59:02 +0000 Subject: r10376: Argh - not quoting dictionary/hash keys is a bit of a perlism. (This used to be commit 588a3183b3f5922349b85520d554dcce23cd699f) --- source4/SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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] -- cgit