diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-01-15 20:52:00 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-01-15 20:52:00 +0000 |
commit | c18253f6af737a1873e11111c8575ee974ef193a (patch) | |
tree | ee36b124cbfdc64a9420485d2e1827bab0823335 /sys-devel | |
parent | stable on x86 (diff) | |
download | gentoo-2-c18253f6af737a1873e11111c8575ee974ef193a.tar.gz gentoo-2-c18253f6af737a1873e11111c8575ee974ef193a.tar.bz2 gentoo-2-c18253f6af737a1873e11111c8575ee974ef193a.zip |
blackfin linux headers are not available
(Portage version: 2.1_pre3-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 90a49ca9cc26..61898e6464fb 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.44 2006/01/15 20:19:56 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/crossdev/files/crossdev,v 1.45 2006/01/15 20:52:00 vapier Exp $ cd / @@ -53,6 +53,7 @@ EOF } STAGE_BINUTILS=0 STAGE_C_ONLY=1 +STAGE_C_KERNEL=2 STAGE_LIBC=3 STAGE_C_CPP=4 STAGE_DISP=( "binutils" "C compiler only" "kernel headers" "C compiler & libc" "C/C++ compiler" ) @@ -110,7 +111,7 @@ parse_target() { BPKG="binutils-bfin"; GPKG="gcc-bfin"; LPKG="uclibc"; - STAGE=${STAGE_C_ONLY};; + STAGE=${STAGE_C_KERNEL};; msp430) TARCH=${HARCH}; CPOST=""; |