From: Alan Modra Date: Wed, 28 Jan 2004 13:31:30 +0000 (+0000) Subject: * genscripts.sh: Apply $LIBPATH_SUFFIX to $tool_lib and $libdir too. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1dd3bf68768e9cbde1b69d64bdc0b8e9203e5f7d;p=binutils-gdb.git * genscripts.sh: Apply $LIBPATH_SUFFIX to $tool_lib and $libdir too. --- diff --git a/ld/ChangeLog b/ld/ChangeLog index 25d53d64248..78682f6cf0e 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,7 @@ +2004-01-28 Alan Modra + + * genscripts.sh: Apply $LIBPATH_SUFFIX to $tool_lib and $libdir too. + 2004-01-24 Jakub Jelinek * emulparams/elf64_ia64.sh: Put .rela.opd into diff --git a/ld/genscripts.sh b/ld/genscripts.sh index 4c7226ad6b0..4069d68b27d 100755 --- a/ld/genscripts.sh +++ b/ld/genscripts.sh @@ -128,10 +128,20 @@ fi if [ "x${LIB_PATH}" = "x" ] && [ "x${USE_LIBPATH}" = xyes ] ; then LIB_PATH2= - if [ x"$use_sysroot" != xyes ] ; then - LIB_PATH2=${libdir} + + libs=${NATIVE_LIB_DIRS} + if [ "x${use_sysroot}" != "xyes" ] ; then + case " ${libs} " in + *" ${libdir} "*) ;; + *) libs="${libdir} ${libs}" + esac + case " ${libs} " in + *" ${tool_lib} "*) ;; + *) libs="${tool_lib} ${libs}" + esac fi - for lib in ${NATIVE_LIB_DIRS}; do + + for lib in ${libs}; do # The "=" is harmless if we aren't using a sysroot, but also needless. if [ "x${use_sysroot}" = "xyes" ] ; then lib="=${lib}" @@ -161,13 +171,13 @@ if [ "x${LIB_PATH}" = "x" ] && [ "x${USE_LIBPATH}" = xyes ] ; then esac fi done + case :${LIB_PATH}:${LIB_PATH2}: in *:: | ::*) LIB_PATH=${LIB_PATH}${LIB_PATH2} ;; *) LIB_PATH=${LIB_PATH}:${LIB_PATH2} ;; esac fi - # Always search $(tooldir)/lib, aka /usr/local/TARGET/lib, except for # sysrooted configurations and when LIBPATH=":". if [ "x${use_sysroot}" != "xyes" ] ; then