diff options
author | mdejong <mdejong> | 2003-08-18 07:25:49 (GMT) |
---|---|---|
committer | mdejong <mdejong> | 2003-08-18 07:25:49 (GMT) |
commit | 6f2e1fdbc56144db97b432f8bd152cb6abce45ca (patch) | |
tree | 7bfcd4b7567cdf7c89d4fdff2e34c584ae5ae074 /win/tcl.m4 | |
parent | fcf099c193f2f5f2f310954a013c7de3d51a3b29 (diff) | |
download | tcl-6f2e1fdbc56144db97b432f8bd152cb6abce45ca.zip tcl-6f2e1fdbc56144db97b432f8bd152cb6abce45ca.tar.gz tcl-6f2e1fdbc56144db97b432f8bd152cb6abce45ca.tar.bz2 |
* win/configure: Regen.
* win/tcl.m4 (SC_ENABLE_SYMBOLS): Use test instead
of -eq, which does not work. [Bug 781109]
Diffstat (limited to 'win/tcl.m4')
-rw-r--r-- | win/tcl.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -305,7 +305,7 @@ AC_DEFUN(SC_ENABLE_SYMBOLS, [ # Use result from SC_CONFIG_CFLAGS to determine if # optimization is truly active. - if [ $OPTIMIZING -eq 1 ]; then + if test "$OPTIMIZING" = "1" ; then AC_DEFINE(TCL_CFG_OPTIMIZED) fi else |