diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-01-08 09:52:45 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-01-08 09:52:45 +0000 |
commit | c9a9a1270165573e997a42e1366c81160a18c86d (patch) | |
tree | b7c61f25026f8cdee47c96ba94020e81cadef109 /sys-devel/gcc-config/files | |
parent | Marked ~ppc for bug #114350. (diff) | |
download | gentoo-2-c9a9a1270165573e997a42e1366c81160a18c86d.tar.gz gentoo-2-c9a9a1270165573e997a42e1366c81160a18c86d.tar.bz2 gentoo-2-c9a9a1270165573e997a42e1366c81160a18c86d.zip |
Ignore directores in /etc/env.d/gcc #118246 by Mark Purtill.
(Portage version: 2.1_pre3-r1)
Diffstat (limited to 'sys-devel/gcc-config/files')
-rw-r--r-- | sys-devel/gcc-config/files/digest-gcc-config-1.3.12-r6 (renamed from sys-devel/gcc-config/files/digest-gcc-config-1.3.12-r5) | 0 | ||||
-rw-r--r-- | sys-devel/gcc-config/files/digest-gcc-config-1.3.13-r1 (renamed from sys-devel/gcc-config/files/digest-gcc-config-1.3.13) | 0 | ||||
-rwxr-xr-x | sys-devel/gcc-config/files/gcc-config-1.3.12 | 3 | ||||
-rwxr-xr-x | sys-devel/gcc-config/files/gcc-config-1.3.13 | 3 |
4 files changed, 4 insertions, 2 deletions
diff --git a/sys-devel/gcc-config/files/digest-gcc-config-1.3.12-r5 b/sys-devel/gcc-config/files/digest-gcc-config-1.3.12-r6 index e69de29bb2d1..e69de29bb2d1 100644 --- a/sys-devel/gcc-config/files/digest-gcc-config-1.3.12-r5 +++ b/sys-devel/gcc-config/files/digest-gcc-config-1.3.12-r6 diff --git a/sys-devel/gcc-config/files/digest-gcc-config-1.3.13 b/sys-devel/gcc-config/files/digest-gcc-config-1.3.13-r1 index e69de29bb2d1..e69de29bb2d1 100644 --- a/sys-devel/gcc-config/files/digest-gcc-config-1.3.13 +++ b/sys-devel/gcc-config/files/digest-gcc-config-1.3.13-r1 diff --git a/sys-devel/gcc-config/files/gcc-config-1.3.12 b/sys-devel/gcc-config/files/gcc-config-1.3.12 index 8366a2678f7c..ebce2f0a711b 100755 --- a/sys-devel/gcc-config/files/gcc-config-1.3.12 +++ b/sys-devel/gcc-config/files/gcc-config-1.3.12 @@ -1,7 +1,7 @@ #!/bin/bash # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc-config/files/gcc-config-1.3.12,v 1.13 2006/01/05 03:05:42 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc-config/files/gcc-config-1.3.12,v 1.14 2006/01/08 09:52:45 vapier Exp $ trap ":" INT QUIT TSTP @@ -595,6 +595,7 @@ for x in "$@" ; do # User gave us a # representing the profile i=1 for y in "${GCC_ENV_D}"/* ; do + [[ -f ${y} ]] || continue [[ ${y/\/config} != ${y} ]] && continue if [[ -f ${y} ]] && [[ ${x} == ${i} ]] ; then diff --git a/sys-devel/gcc-config/files/gcc-config-1.3.13 b/sys-devel/gcc-config/files/gcc-config-1.3.13 index 2a82308a947b..e2c8debd3bf2 100755 --- a/sys-devel/gcc-config/files/gcc-config-1.3.13 +++ b/sys-devel/gcc-config/files/gcc-config-1.3.13 @@ -1,7 +1,7 @@ #!/bin/bash # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc-config/files/gcc-config-1.3.13,v 1.2 2006/01/05 03:05:42 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc-config/files/gcc-config-1.3.13,v 1.3 2006/01/08 09:52:45 vapier Exp $ trap ":" INT QUIT TSTP @@ -601,6 +601,7 @@ for x in "$@" ; do # User gave us a # representing the profile i=1 for y in "${GCC_ENV_D}"/* ; do + [[ -f ${y} ]] || continue [[ ${y/\/config} != ${y} ]] && continue if [[ -f ${y} ]] && [[ ${x} == ${i} ]] ; then |