diff options
author | mdejong <mdejong> | 2001-06-26 20:28:43 (GMT) |
---|---|---|
committer | mdejong <mdejong> | 2001-06-26 20:28:43 (GMT) |
commit | 6066205f3d02f902d53fd00d55d8bef7c06ebee8 (patch) | |
tree | 4973c748b15cc94a17a9d6bec7e419adb437a5b9 /win | |
parent | 6e78ca3bfaefa925f074070ac7788fd278271283 (diff) | |
download | tcl-6066205f3d02f902d53fd00d55d8bef7c06ebee8.zip tcl-6066205f3d02f902d53fd00d55d8bef7c06ebee8.tar.gz tcl-6066205f3d02f902d53fd00d55d8bef7c06ebee8.tar.bz2 |
* unix/configure: Regen.
* unix/configure.in: Fix last checkin by removing
export since that only works in bash.
* win/configure: Regen.
* win/configure.in: Ditto.
Diffstat (limited to 'win')
-rwxr-xr-x | win/configure | 2 | ||||
-rw-r--r-- | win/configure.in | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/win/configure b/win/configure index 2e68055..d8c61e0 100755 --- a/win/configure +++ b/win/configure @@ -550,7 +550,7 @@ fi # If the user did not set CFLAGS, set it now to keep # the AC_PROG_CC macro from adding "-g -O2". if test "${CFLAGS+set}" != "set" ; then - export CFLAGS="" + CFLAGS="" fi # Extract the first word of "gcc", so it can be a program name with args. diff --git a/win/configure.in b/win/configure.in index 82c8377..09df34f 100644 --- a/win/configure.in +++ b/win/configure.in @@ -2,7 +2,7 @@ # generate the file "configure", which is run during Tcl installation # to configure the system for the local environment. # -# RCS: @(#) $Id: configure.in,v 1.35 2001/06/26 20:13:20 mdejong Exp $ +# RCS: @(#) $Id: configure.in,v 1.36 2001/06/26 20:28:43 mdejong Exp $ AC_INIT(../generic/tcl.h) @@ -26,7 +26,7 @@ fi # If the user did not set CFLAGS, set it now to keep # the AC_PROG_CC macro from adding "-g -O2". if test "${CFLAGS+set}" != "set" ; then - export CFLAGS="" + CFLAGS="" fi AC_PROG_CC |