diff options
author | aoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-06-09 20:31:13 +0000 |
---|---|---|
committer | aoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-06-09 20:31:13 +0000 |
commit | 69ab028becb0d35f2907eab626e9ebad0fc6232a (patch) | |
tree | 5d605aac16caa503c3f879d9489af44930f51ec9 /zlib/configure.in | |
parent | 5027d644e7adc689ef42635ed7da4a0f5c5ef9ff (diff) | |
download | gcc-69ab028becb0d35f2907eab626e9ebad0fc6232a.tar.gz |
* configure.in (AC_EXEEXT): Work around in case it expands to
nothing, as in autoconf 2.50.
* configure: Rebuilt.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@43103 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'zlib/configure.in')
-rw-r--r-- | zlib/configure.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/zlib/configure.in b/zlib/configure.in index 16544100174..d8cf0bc41dd 100644 --- a/zlib/configure.in +++ b/zlib/configure.in @@ -56,6 +56,10 @@ LIB_AC_PROG_CC # automake happy, but we dont execute it, since we dont care about # the result. if false; then + # autoconf 2.50 runs AC_EXEEXT by default, and the macro expands + # to nothing, so nothing would remain between `then' and `fi' if it + # were not for the `:' below. + : AC_EXEEXT fi AM_PROG_LIBTOOL |