From 344b0d640d83dc93146c8252e2841acba4f87891 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Tue, 20 Sep 2005 23:00:45 +0000 Subject: 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) --- source4/SConstruct | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) (limited to 'source4') 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' } -- cgit