diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-06-23 22:01:23 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-06-23 22:01:23 +0000 |
commit | 4c54972ca8fce20b132378fe916d836c7d745fe1 (patch) | |
tree | 934f297fee020361609ce72375833b723a947247 /sys-libs/glibc/files/eblits/src_compile.eblit | |
parent | amd64 stable, bug #229115 (diff) | |
download | historical-4c54972ca8fce20b132378fe916d836c7d745fe1.tar.gz historical-4c54972ca8fce20b132378fe916d836c7d745fe1.tar.bz2 historical-4c54972ca8fce20b132378fe916d836c7d745fe1.zip |
Check to see if ports is in $S rather than $PWD #229107.
Package-Manager: portage-2.2_rc1/cvs/Linux 2.6.25 x86_64
Diffstat (limited to 'sys-libs/glibc/files/eblits/src_compile.eblit')
-rw-r--r-- | sys-libs/glibc/files/eblits/src_compile.eblit | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys-libs/glibc/files/eblits/src_compile.eblit b/sys-libs/glibc/files/eblits/src_compile.eblit index a1447d1029a0..06684dfe7985 100644 --- a/sys-libs/glibc/files/eblits/src_compile.eblit +++ b/sys-libs/glibc/files/eblits/src_compile.eblit @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/files/eblits/src_compile.eblit,v 1.4 2008/06/23 01:39:13 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/files/eblits/src_compile.eblit,v 1.5 2008/06/23 22:01:23 vapier Exp $ glibc_do_configure() { local myconf @@ -130,7 +130,7 @@ toolchain-glibc_headers_compile() { # Pick out the correct location for build headers local ports="" myconf="--disable-sanity-checks --enable-hacker-mode" - [[ -d ports ]] && ports=",ports" + [[ -d ${S}/ports ]] && ports=",ports" myconf="${myconf} --enable-add-ons=nptl${ports} --without-cvs |