diff options
author | DJ Delorie <dj@delorie.com> | 2004-01-26 12:52:10 +0000 |
---|---|---|
committer | DJ Delorie <dj@delorie.com> | 2004-01-26 12:52:10 +0000 |
commit | e6df9db3182347265789e082631b00d009fd1856 (patch) | |
tree | e9aa5782ba0e2cc38f4e41d6ce6b6d8b8f7d6e9d /libiberty | |
parent | e04b7eef78215775b690076d03c5c40d53cb98ab (diff) | |
download | gdb-e6df9db3182347265789e082631b00d009fd1856.tar.gz |
merge from gcccarlton_dictionary-20040126-merge
Diffstat (limited to 'libiberty')
-rw-r--r-- | libiberty/ChangeLog | 5 | ||||
-rwxr-xr-x | libiberty/configure | 20 | ||||
-rw-r--r-- | libiberty/configure.ac | 1 |
3 files changed, 21 insertions, 5 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index 4f5d000e110..10c7f4690e6 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -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 diff --git a/libiberty/configure b/libiberty/configure index 71f14e8a93c..2f65976692d 100755 --- a/libiberty/configure +++ b/libiberty/configure @@ -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" diff --git a/libiberty/configure.ac b/libiberty/configure.ac index 3e379cc85a5..e8907e708c8 100644 --- a/libiberty/configure.ac +++ b/libiberty/configure.ac @@ -496,6 +496,7 @@ else fi AC_SUBST(INSTALL_DEST) +m4_pattern_allow(LIBOBJS) L="" for l in x $LIBOBJS; do case $l in |