diff options
author | 2006-04-12 22:08:31 +0000 | |
---|---|---|
committer | 2006-04-12 22:08:31 +0000 | |
commit | fb8e8005f1d4b65d96d0a141986982c774817ab1 (patch) | |
tree | 15b1ab0b2d4432f3f508192e7bd152f9dc192587 /sys-devel/crossdev/files | |
parent | Build fixes, bug #126091. (diff) | |
download | historical-fb8e8005f1d4b65d96d0a141986982c774817ab1.tar.gz historical-fb8e8005f1d4b65d96d0a141986982c774817ab1.tar.bz2 historical-fb8e8005f1d4b65d96d0a141986982c774817ab1.zip |
allow people to store CFLAGS/LDFLAGS as well
Package-Manager: portage-2.1_pre7-r5
Diffstat (limited to 'sys-devel/crossdev/files')
-rwxr-xr-x | sys-devel/crossdev/files/crossdev | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys-devel/crossdev/files/crossdev b/sys-devel/crossdev/files/crossdev index 5e20bd7eafee..698390ab6010 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.59 2006/04/12 00:47:36 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/crossdev/files/crossdev,v 1.60 2006/04/12 22:08:31 vapier Exp $ cd / @@ -385,7 +385,7 @@ if [[ $(env -u CHOST portageq envvar CHOST) == ${CTARGET} ]] ; then fi # grab user settings -for v in ABI UCLIBC_CPU USE BVER GVER KVER LVER STAGE ; do +for v in ABI UCLIBC_CPU USE BVER GVER KVER LVER STAGE CFLAGS LDFLAGS ASFLAGS ; do if [[ -e /etc/portage/crossdev/${CTARGET}/${v} ]] ; then export ${v}=$(</etc/portage/crossdev/${CTARGET}/${v}) einfo "Restoring user setting '${v}' to '${!v}'" |