diff options
author | Camm Maguire <camm@debian.org> | 2014-04-08 16:22:35 +0000 |
---|---|---|
committer | Camm Maguire <camm@debian.org> | 2014-04-21 14:32:18 +0000 |
commit | 8043404f521a1efba02202eb94c9fb256b4da351 (patch) | |
tree | 60db6c4359148c6e4e9a3d1094401657195a0e1d | |
parent | b96a73662e8b4eeca8087cbee0c7a26332e46919 (diff) | |
download | gcl-8043404f521a1efba02202eb94c9fb256b4da351.tar.gz |
configure syntax fix
-rwxr-xr-x | gcl/configure | 2 | ||||
-rw-r--r-- | gcl/configure.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gcl/configure b/gcl/configure index ab489f1a..c8f5d6fb 100755 --- a/gcl/configure +++ b/gcl/configure @@ -5164,7 +5164,7 @@ if test "$GCC" = "yes" ; then TCFLAGS="$TCFLAGS -pipe -Wall " case $use in - *mingw*||*gnuwin*) + *mingw*|*gnuwin*) echo "WARNING: Remove -fno-zero-initialized-in-bss from makedefs if gcc less than 3.3.1." echo " It is ptherwise needed for the Unexec stuff to work." TCFLAGS="$TCFLAGS -fno-zero-initialized-in-bss -mms-bitfields $win_flags";; diff --git a/gcl/configure.in b/gcl/configure.in index f800482e..95e9725e 100644 --- a/gcl/configure.in +++ b/gcl/configure.in @@ -504,7 +504,7 @@ if test "$GCC" = "yes" ; then TCFLAGS="$TCFLAGS -pipe -Wall " case $use in - *mingw*||*gnuwin*) + *mingw*|*gnuwin*) echo "WARNING: Remove -fno-zero-initialized-in-bss from makedefs if gcc less than 3.3.1." echo " It is ptherwise needed for the Unexec stuff to work." TCFLAGS="$TCFLAGS -fno-zero-initialized-in-bss -mms-bitfields $win_flags";; |