Commit 5254fd7b by Ian Lance Taylor Committed by Ian Lance Taylor

configure.ac: Add m4_pattern_allow(LIBOBJS).

	* configure.ac: Add m4_pattern_allow(LIBOBJS).
	* configure: Regenerate.

From-SVN: r76619
parent 2d6d0eb5
2004-01-25 Ian Lance Taylor <ian@wasabisystems.com>
* configure.ac: Add m4_pattern_allow(LIBOBJS).
* configure: Regenerate.
2004-01-22 DJ Delorie <dj@redhat.com> 2004-01-22 DJ Delorie <dj@redhat.com>
* Makefile.in: Convert to ./ throughout. Rebuild dependencies * Makefile.in: Convert to ./ throughout. Rebuild dependencies
......
...@@ -5679,11 +5679,11 @@ fi ...@@ -5679,11 +5679,11 @@ fi
# Figure out which version of pexecute to use. # Figure out which version of pexecute to use.
case "${host}" in case "${host}" in
*-*-mingw* | *-*-winnt*) pexecute=pex-win32.o ;; *-*-mingw* | *-*-winnt*) pexecute=./pex-win32.o ;;
*-*-msdosdjgpp*) pexecute=pex-djgpp.o ;; *-*-msdosdjgpp*) pexecute=./pex-djgpp.o ;;
*-*-msdos*) pexecute=pex-msdos.o ;; *-*-msdos*) pexecute=./pex-msdos.o ;;
*-*-os2-emx*) pexecute=pex-os2.o ;; *-*-os2-emx*) pexecute=./pex-os2.o ;;
*) pexecute=pex-unix.o ;; *) pexecute=./pex-unix.o ;;
esac esac
...@@ -6134,6 +6134,16 @@ else ...@@ -6134,6 +6134,16 @@ else
fi fi
L=""
for l in x $LIBOBJS; do
case $l in
x) ;;
*) L="$L ./$l" ;;
esac
done
LIBOBJS="$L"
# We need multilib support, but only if configuring for the target. # We need multilib support, but only if configuring for the target.
ac_config_files="$ac_config_files Makefile testsuite/Makefile" ac_config_files="$ac_config_files Makefile testsuite/Makefile"
ac_config_commands="$ac_config_commands default" ac_config_commands="$ac_config_commands default"
......
...@@ -496,6 +496,7 @@ else ...@@ -496,6 +496,7 @@ else
fi fi
AC_SUBST(INSTALL_DEST) AC_SUBST(INSTALL_DEST)
m4_pattern_allow(LIBOBJS)
L="" L=""
for l in x $LIBOBJS; do for l in x $LIBOBJS; do
case $l in case $l in
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment