diff options
author | hjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-10-14 18:17:14 +0000 |
---|---|---|
committer | hjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-10-14 18:17:14 +0000 |
commit | daf4a08b4c4b04fe0140d543de09e92ee0b61a57 (patch) | |
tree | ade74745aecec20648e6575081258da03cac9a57 /libobjc/configure.ac | |
parent | 9129d24f31cba548a1e07ebc8691d043da1540fb (diff) | |
download | gcc-daf4a08b4c4b04fe0140d543de09e92ee0b61a57.tar.gz |
2007-10-14 H.J. Lu <hongjiu.lu@intel.com>
* configure.ac: Don't run config-ml.in directly.
(multilib_arg): New.
* configure: Regenerated.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@129299 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libobjc/configure.ac')
-rw-r--r-- | libobjc/configure.ac | 27 |
1 files changed, 6 insertions, 21 deletions
diff --git a/libobjc/configure.ac b/libobjc/configure.ac index 8cd7380e7c5..ce47fec55eb 100644 --- a/libobjc/configure.ac +++ b/libobjc/configure.ac @@ -271,26 +271,11 @@ AC_MSG_RESULT($ac_exception_model_name) # Output # ------ -AC_CONFIG_FILES([Makefile]) - -AC_CONFIG_COMMANDS([default], -[[if test -n "$CONFIG_FILES"; then - if test -n "${with_target_subdir}"; then - # FIXME: We shouldn't need to set ac_file - ac_file=Makefile - LD="${ORIGINAL_LD_FOR_MULTILIBS}" - . ${multi_basedir}/config-ml.in - fi -fi]], -[[srcdir=${srcdir} -host=${host} -target=${target} -with_target_subdir=${with_target_subdir} -with_multisubdir=${with_multisubdir} -ac_configure_args="--enable-multilib ${ac_configure_args}" -multi_basedir=${multi_basedir} -CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} -ORIGINAL_LD_FOR_MULTILIBS="${ORIGINAL_LD_FOR_MULTILIBS}" -]]) +if test ${multilib} = yes; then + multilib_arg="--enable-multilib" +else + multilib_arg= +fi +AC_CONFIG_FILES([Makefile]) AC_OUTPUT |