mirror of
https://github.com/dhewm/dhewm3.git
synced 2024-11-23 04:51:56 +00:00
scons: Allow more than one arg in BASECPPFLAGS
scons BASEFLAGS='-DID_FAKE_PURE=1 -DID_ENFORCE_KEY=0'
This commit is contained in:
parent
8cbd6167ac
commit
8c80d6c0b8
1 changed files with 1 additions and 1 deletions
|
@ -267,7 +267,7 @@ CORELINKFLAGS = [ ]
|
|||
# for release build, further optimisations that may not work on all files
|
||||
OPTCPPFLAGS = [ ]
|
||||
|
||||
BASECPPFLAGS.append( BASEFLAGS )
|
||||
BASECPPFLAGS.extend( BASEFLAGS.split(' ') )
|
||||
BASECPPFLAGS.append( '-pipe' )
|
||||
# warn all
|
||||
BASECPPFLAGS.append( '-Wall' )
|
||||
|
|
Loading…
Reference in a new issue