diff options
Diffstat (limited to 'sys-devel')
-rw-r--r-- | sys-devel/crossdev/ChangeLog | 7 | ||||
-rwxr-xr-x | sys-devel/crossdev/files/crossdev | 5 |
2 files changed, 8 insertions, 4 deletions
diff --git a/sys-devel/crossdev/ChangeLog b/sys-devel/crossdev/ChangeLog index 1a02e274db8b..d77ffaa75e86 100644 --- a/sys-devel/crossdev/ChangeLog +++ b/sys-devel/crossdev/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-devel/crossdev -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/crossdev/ChangeLog,v 1.61 2008/11/28 09:21:10 vapier Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/crossdev/ChangeLog,v 1.62 2009/02/15 23:43:11 vapier Exp $ + + 15 Feb 2009; Mike Frysinger <vapier@gentoo.org> files/crossdev: + Do not build with headers by default for avr #230343. *crossdev-0.9.19 (28 Nov 2008) diff --git a/sys-devel/crossdev/files/crossdev b/sys-devel/crossdev/files/crossdev index c94a9588dd5c..45b14e77362a 100755 --- a/sys-devel/crossdev/files/crossdev +++ b/sys-devel/crossdev/files/crossdev @@ -1,7 +1,7 @@ #!/bin/bash # Copyright 1999-2007 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.109 2008/11/28 09:21:10 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/crossdev/files/crossdev,v 1.110 2009/02/15 23:43:11 vapier Exp $ cd / umask 0022 #159111 @@ -146,7 +146,8 @@ parse_target() { case ${CTARGET} in avr*) KPKG="[none]"; STAGE_DEFAULT=${STAGE_LIBC}; LCAT="dev-embedded"; LPKG="avr-libc"; - GUSE=${GUSE_DISABLE};; + GUSE=${GUSE_DISABLE} + WITH_DEF_HEADERS="no";; # due to upstream lameness, build C/C++ at first glance *-cygwin) |