diff options
author | aoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-06-09 20:32:56 +0000 |
---|---|---|
committer | aoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-06-09 20:32:56 +0000 |
commit | 2f39b190cba778b850c2c396124f982e4708478b (patch) | |
tree | 6d06a8ec83a821c7cdd48a42479bc9302f9b6698 /libobjc/configure.in | |
parent | cc4069a9fa1680df39f54155aa6d2da8e3e27c02 (diff) | |
download | gcc-2f39b190cba778b850c2c396124f982e4708478b.tar.gz |
* configure.in (AC_EXEEXT): Work around in case it expands to
nothing, as in autoconf 2.50.
* acinclude.m4: Likewise.
* configure: Rebuilt.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@43105 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libobjc/configure.in')
-rw-r--r-- | libobjc/configure.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libobjc/configure.in b/libobjc/configure.in index d5686101a86..86a8d92374a 100644 --- a/libobjc/configure.in +++ b/libobjc/configure.in @@ -91,6 +91,10 @@ AC_PROG_INSTALL # 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 |