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 | d31f77a11e1932847df24f7810c28972bb786ef2 (patch) | |
tree | b9fa96209b0da02e2a40e2e3170970dde8894f5c /sys-libs | |
parent | amd64 stable, bug #229115 (diff) | |
download | gentoo-2-d31f77a11e1932847df24f7810c28972bb786ef2.tar.gz gentoo-2-d31f77a11e1932847df24f7810c28972bb786ef2.tar.bz2 gentoo-2-d31f77a11e1932847df24f7810c28972bb786ef2.zip |
Check to see if ports is in $S rather than $PWD #229107.
(Portage version: 2.2_rc1/cvs/Linux 2.6.25 x86_64)
Diffstat (limited to 'sys-libs')
-rw-r--r-- | sys-libs/glibc/ChangeLog | 6 | ||||
-rw-r--r-- | sys-libs/glibc/files/eblits/src_compile.eblit | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/sys-libs/glibc/ChangeLog b/sys-libs/glibc/ChangeLog index e598984786f4..841f70933388 100644 --- a/sys-libs/glibc/ChangeLog +++ b/sys-libs/glibc/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-libs/glibc # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/ChangeLog,v 1.587 2008/06/23 01:39:12 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/ChangeLog,v 1.588 2008/06/23 22:01:23 vapier Exp $ + + 23 Jun 2008; Mike Frysinger <vapier@gentoo.org> + files/eblits/src_compile.eblit: + Check to see if ports is in $S rather than $PWD #229107. 23 Jun 2008; Mike Frysinger <vapier@gentoo.org> files/eblits/src_compile.eblit, files/eblits/src_install.eblit, 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 |