diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-10-18 07:24:58 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-10-18 07:24:58 +0000 |
commit | 026c4c345653c4e0a9def3d996ca133de9753265 (patch) | |
tree | ff0234bdd3990cf919064f2b82e8feab5dad7132 /eclass | |
parent | Workaround autoconf-2.64 errors with nested [] #281694. (diff) | |
download | historical-026c4c345653c4e0a9def3d996ca133de9753265.tar.gz historical-026c4c345653c4e0a9def3d996ca133de9753265.tar.bz2 historical-026c4c345653c4e0a9def3d996ca133de9753265.zip |
get la path list from $D rather than / as pointed out by Ryan Hill #283761#10
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/toolchain.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index bb7f3ffb3302..767db9ac66ba 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.408 2009/10/12 19:01:31 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.409 2009/10/18 07:24:58 vapier Exp $ # # Maintainer: Toolchain Ninjas <toolchain@gentoo.org> @@ -2484,7 +2484,7 @@ disable_multilib_libjava() { fix_libtool_libdir_paths() { pushd "${D}" >/dev/null - pushd "${1}" >/dev/null + pushd "./${1}" >/dev/null local dir="${PWD#${D}}" local allarchives=$(echo *.la) allarchives="\(${allarchives// /\\|}\)" |