diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-07-26 21:08:09 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-07-26 21:08:09 +0000 |
commit | 5332430643545f55986b1896242220cc1ffdc136 (patch) | |
tree | b0553c3def4fb7c22e21d5c4f5554a9a1a124c2f /autoconf/m4 | |
parent | 93b59c61db5c9d677abcbc7c3f9ffcc05d19255a (diff) | |
download | external_llvm-5332430643545f55986b1896242220cc1ffdc136.zip external_llvm-5332430643545f55986b1896242220cc1ffdc136.tar.gz external_llvm-5332430643545f55986b1896242220cc1ffdc136.tar.bz2 |
Remove an extraneous use of ${ac_exeext}. Patch by Anton Korobeynikov.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29306 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf/m4')
-rw-r--r-- | autoconf/m4/build_exeext.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoconf/m4/build_exeext.m4 b/autoconf/m4/build_exeext.m4 index e44b58b..5ea7d2e 100644 --- a/autoconf/m4/build_exeext.m4 +++ b/autoconf/m4/build_exeext.m4 @@ -18,7 +18,7 @@ else fi fi test -z "$BUILD_CC" && AC_MSG_ERROR([no acceptable cc found in \$PATH]) - ac_build_link='${BUILD_CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&AS_MESSAGE_LOG_FD' + ac_build_link='${BUILD_CC-cc} -o conftest $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&AS_MESSAGE_LOG_FD' rm -f conftest* echo 'int main () { return 0; }' > conftest.$ac_ext ac_cv_build_exeext= |