1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

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 368475ffcb)
This commit is contained in:
Tim Potter 2005-09-20 23:00:45 +00:00 committed by Gerald (Jerry) Carter
parent b963050769
commit 344b0d640d

View File

@ -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'
}