summaryrefslogtreecommitdiff
path: root/source4/SConstruct
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2005-09-21 04:59:02 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:38:33 -0500
commit60cb7a42aa5a1cef0e65dee0a8efbde9341dcaf9 (patch)
treef997a38ce7d849519219424114b8df8f34250f3e /source4/SConstruct
parent9d44a9a351e6c830ca18a0129bb11b3f99d53c4b (diff)
downloadsamba-60cb7a42aa5a1cef0e65dee0a8efbde9341dcaf9.tar.gz
samba-60cb7a42aa5a1cef0e65dee0a8efbde9341dcaf9.tar.bz2
samba-60cb7a42aa5a1cef0e65dee0a8efbde9341dcaf9.zip
r10376: Argh - not quoting dictionary/hash keys is a bit of a perlism.
(This used to be commit 588a3183b3f5922349b85520d554dcce23cd699f)
Diffstat (limited to 'source4/SConstruct')
-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]