mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-03 23:34:02 +08:00
merge from gcc
This commit is contained in:
parent
df0a8012b1
commit
cbf0ee7967
@ -1,3 +1,8 @@
|
||||
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>
|
||||
|
||||
* Makefile.in: Convert to ./ throughout. Rebuild dependencies
|
||||
|
20
libiberty/configure
vendored
20
libiberty/configure
vendored
@ -5679,11 +5679,11 @@ fi
|
||||
|
||||
# Figure out which version of pexecute to use.
|
||||
case "${host}" in
|
||||
*-*-mingw* | *-*-winnt*) pexecute=pex-win32.o ;;
|
||||
*-*-msdosdjgpp*) pexecute=pex-djgpp.o ;;
|
||||
*-*-msdos*) pexecute=pex-msdos.o ;;
|
||||
*-*-os2-emx*) pexecute=pex-os2.o ;;
|
||||
*) pexecute=pex-unix.o ;;
|
||||
*-*-mingw* | *-*-winnt*) pexecute=./pex-win32.o ;;
|
||||
*-*-msdosdjgpp*) pexecute=./pex-djgpp.o ;;
|
||||
*-*-msdos*) pexecute=./pex-msdos.o ;;
|
||||
*-*-os2-emx*) pexecute=./pex-os2.o ;;
|
||||
*) pexecute=./pex-unix.o ;;
|
||||
esac
|
||||
|
||||
|
||||
@ -6134,6 +6134,16 @@ else
|
||||
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.
|
||||
ac_config_files="$ac_config_files Makefile testsuite/Makefile"
|
||||
ac_config_commands="$ac_config_commands default"
|
||||
|
@ -496,6 +496,7 @@ else
|
||||
fi
|
||||
AC_SUBST(INSTALL_DEST)
|
||||
|
||||
m4_pattern_allow(LIBOBJS)
|
||||
L=""
|
||||
for l in x $LIBOBJS; do
|
||||
case $l in
|
||||
|
Loading…
Reference in New Issue
Block a user