diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2015-04-20 10:35:20 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2015-04-20 10:35:20 (GMT) |
commit | c3f11e774127c4045f36116d4b7d02fc0869546c (patch) | |
tree | d2a314e0711f5a569ce591c5b2a0fe1e98844d0f | |
parent | 9f710e45a9414d00d1fff77c9c36d1f2a7d7182a (diff) | |
download | tcl-c3f11e774127c4045f36116d4b7d02fc0869546c.zip tcl-c3f11e774127c4045f36116d4b7d02fc0869546c.tar.gz tcl-c3f11e774127c4045f36116d4b7d02fc0869546c.tar.bz2 |
Fix [8065d178229d8d335eee64d36ada37c4dedf2579|8065d17822]: Duplicate -DNDEBUG in compiler command with --disable-symbols
-rw-r--r-- | unix/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index ad6034f..46ff5cd 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -96,7 +96,7 @@ CFLAGS_WARNING = @CFLAGS_WARNING@ # The default switches for optimization or debugging CFLAGS_DEBUG = @CFLAGS_DEBUG@ -CFLAGS_OPTIMIZE = -DNDEBUG @CFLAGS_OPTIMIZE@ +CFLAGS_OPTIMIZE = @CFLAGS_OPTIMIZE@ # To change the compiler switches, for example to change from optimization to # debugging symbols, change the following line: |