summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2005-09-20 23:00:45 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:38:32 -0500
commit344b0d640d83dc93146c8252e2841acba4f87891 (patch)
tree09f5fb7c18952edb7f4d33c7bd3e1859a73eee6b /source4
parentb9630507694a4528accf551e187bfb1aeed179ce (diff)
downloadsamba-344b0d640d83dc93146c8252e2841acba4f87891.tar.gz
samba-344b0d640d83dc93146c8252e2841acba4f87891.tar.bz2
samba-344b0d640d83dc93146c8252e2841acba4f87891.zip
r10369: You don't need to put leading or trailing spaces on variables. It's
a make-ism. Use consistent (single) quoting. (This used to be commit 368475ffcb88e4cd1f632847f6fe661eb35b9403)
Diffstat (limited to 'source4')
-rw-r--r--source4/SConstruct44
1 files changed, 22 insertions, 22 deletions
diff --git a/source4/SConstruct b/source4/SConstruct
index 12d47ba89b..a5d02038eb 100644
--- a/source4/SConstruct
+++ b/source4/SConstruct
@@ -22,18 +22,18 @@ hostenv = Environment(
)
if hostenv['developer']:
- hostenv.Append(CCFLAGS=' -Wall')
- hostenv.Append(CCFLAGS=' -Wshadow')
- hostenv.Append(CCFLAGS=' -Werror-implicit-function-declaration')
- hostenv.Append(CCFLAGS=' -Wstrict-prototypes')
- hostenv.Append(CCFLAGS=' -Wpointer-arith')
- hostenv.Append(CCFLAGS=' -Wcast-qual')
- hostenv.Append(CCFLAGS=' -Wcast-align')
- hostenv.Append(CCFLAGS=' -Wwrite-strings')
- hostenv.Append(CCFLAGS=' -Wmissing-format-attribute')
- hostenv.Append(CCFLAGS=' -Wformat=2')
- hostenv.Append(CCFLAGS=' -Wno-format-y2k')
- hostenv.Append(CCFLAGS=' -Wno-declaration-after-statement')
+ hostenv.Append(CCFLAGS='-Wall')
+ hostenv.Append(CCFLAGS='-Wshadow')
+ hostenv.Append(CCFLAGS='-Werror-implicit-function-declaration')
+ hostenv.Append(CCFLAGS='-Wstrict-prototypes')
+ hostenv.Append(CCFLAGS='-Wpointer-arith')
+ hostenv.Append(CCFLAGS='-Wcast-qual')
+ hostenv.Append(CCFLAGS='-Wcast-align')
+ hostenv.Append(CCFLAGS='-Wwrite-strings')
+ hostenv.Append(CCFLAGS='-Wmissing-format-attribute')
+ hostenv.Append(CCFLAGS='-Wformat=2')
+ hostenv.Append(CCFLAGS='-Wno-format-y2k')
+ hostenv.Append(CCFLAGS='-Wno-declaration-after-statement')
@@ -58,16 +58,16 @@ if cross_compiling:
dynenv = hostenv.Copy()
paths = {
- 'BINDIR': "bin",
- 'SBINDIR': "sbin",
- 'CONFIGFILE': "cfg",
- 'LOGFILEBASE': "lfb",
- 'NCALRPCDIR': "ncalrpc",
- 'LMHOSTSFILE': "lmhosts",
- 'LIBDIR': "libdir",
- 'SHLIBEXT': "ext",
- 'LOCKDIR': "lockdir",
- 'PIDDIR': "piddir",
+ 'BINDIR': 'bin',
+ 'SBINDIR': 'sbin',
+ 'CONFIGFILE': 'cfg',
+ 'LOGFILEBASE': 'lfb',
+ 'NCALRPCDIR': 'ncalrpc',
+ 'LMHOSTSFILE': 'lmhosts',
+ 'LIBDIR': 'libdir',
+ 'SHLIBEXT': 'ext',
+ 'LOCKDIR': 'lockdir',
+ 'PIDDIR': 'piddir',
'PRIVATE_DIR': 'private',
'SWATDIR': 'swat'
}