diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-02-11 05:45:29 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-02-11 05:45:29 +0000 |
commit | 49443cff4aa74e487ecc6e8343861ce2369ecdf2 (patch) | |
tree | a533782ad9bbe1dd7341e5dd3802cf88d7ef888e /sys-devel | |
parent | mips stable (diff) | |
download | gentoo-2-49443cff4aa74e487ecc6e8343861ce2369ecdf2.tar.gz gentoo-2-49443cff4aa74e487ecc6e8343861ce2369ecdf2.tar.bz2 gentoo-2-49443cff4aa74e487ecc6e8343861ce2369ecdf2.zip |
default to no LPKG for all targets and let *-gnu install it
(Portage version: 2.1_pre4-r1)
Diffstat (limited to 'sys-devel')
-rwxr-xr-x | sys-devel/crossdev/files/crossdev | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys-devel/crossdev/files/crossdev b/sys-devel/crossdev/files/crossdev index e6c352314aeb..023c4f8cf3eb 100755 --- a/sys-devel/crossdev/files/crossdev +++ b/sys-devel/crossdev/files/crossdev @@ -1,7 +1,7 @@ #!/bin/bash # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/crossdev/files/crossdev,v 1.48 2006/01/27 01:08:59 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/crossdev/files/crossdev,v 1.49 2006/02/11 05:45:29 vapier Exp $ cd / @@ -191,6 +191,7 @@ parse_target() { *-dietlibc) LPKG="dietlibc";; *-klibc) LPKG="klibc";; *-uclibc) LPKG="uclibc";; + *-gnu) LPKG="glibc";; # Now for the BSDs ... *-freebsd*) @@ -311,7 +312,7 @@ STAGE="COW" BCAT="sys-devel" ; BPKG="binutils" ; BVER="[latest]" ; BUSE="" GCAT="sys-devel" ; GPKG="gcc" ; GVER="[latest]" ; GUSE="" KCAT="sys-kernel" ; KPKG="linux-headers" ; KVER="[latest]" ; KUSE="" -LCAT="sys-libs" ; LPKG="glibc" ; LVER="[latest]" ; LUSE="" +LCAT="sys-libs" ; LPKG="" ; LVER="[latest]" ; LUSE="" GUSE_DISABLE="-boundschecking -fortran -gtk -gcj -mudflap -objc -objc-gc" WITH_HEADERS="COW" WITH_DEF_HEADERS="no" EX_FAST="no" |