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 | ae094b90ceaa1084525e1a3fca5331d67e398b60 (patch) | |
tree | d2a314e0711f5a569ce591c5b2a0fe1e98844d0f /unix/Makefile.in | |
parent | a1aea7be4d2d9f0fe966d3bd6eb3ab21f4b072cc (diff) | |
download | tcl-ae094b90ceaa1084525e1a3fca5331d67e398b60.zip tcl-ae094b90ceaa1084525e1a3fca5331d67e398b60.tar.gz tcl-ae094b90ceaa1084525e1a3fca5331d67e398b60.tar.bz2 |
Fix [8065d178229d8d335eee64d36ada37c4dedf2579|8065d17822]: Duplicate -DNDEBUG in compiler command with --disable-symbols
Diffstat (limited to 'unix/Makefile.in')
-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: |