Fix Debian bug #350112: Use CPPDEFINES instead of broken CPPFLAGS to define __BIG_ENDIAN__ on big endian POSIX platforms.
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4505 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
3284f9344a
commit
82cbf4e478
1 changed files with 1 additions and 1 deletions
|
@ -237,7 +237,7 @@ def check_big_endian(ctx):
|
||||||
|
|
||||||
conf = defenv.Configure(custom_tests = { 'CheckBigEndian' : check_big_endian })
|
conf = defenv.Configure(custom_tests = { 'CheckBigEndian' : check_big_endian })
|
||||||
if conf.CheckBigEndian():
|
if conf.CheckBigEndian():
|
||||||
makensis_env.Append(CPPFLAGS = ['__BIG_ENDIAN__'])
|
makensis_env.Append(CPPDEFINES = ['__BIG_ENDIAN__'])
|
||||||
conf.Finish()
|
conf.Finish()
|
||||||
|
|
||||||
### return
|
### return
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue