diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-05-05 05:13:15 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-05-05 05:13:15 +0000 |
commit | be598712c0f57924a6e8906a20650492c62bcc9b (patch) | |
tree | ba4063fe77fa93ec7981d98ff4c8df8939213f85 /sys-devel/gcc | |
parent | use /etc/init.d/functions.sh rather than /sbin/functions.sh (diff) | |
download | gentoo-2-be598712c0f57924a6e8906a20650492c62bcc9b.tar.gz gentoo-2-be598712c0f57924a6e8906a20650492c62bcc9b.tar.bz2 gentoo-2-be598712c0f57924a6e8906a20650492c62bcc9b.zip |
use /etc/init.d/functions.sh rather than /sbin/functions.sh
(Portage version: 2.1.2.5)
Diffstat (limited to 'sys-devel/gcc')
-rw-r--r-- | sys-devel/gcc/files/scan_libgcc_linked_ssp.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys-devel/gcc/files/scan_libgcc_linked_ssp.sh b/sys-devel/gcc/files/scan_libgcc_linked_ssp.sh index f8817e21d15d..35119e5d93f7 100644 --- a/sys-devel/gcc/files/scan_libgcc_linked_ssp.sh +++ b/sys-devel/gcc/files/scan_libgcc_linked_ssp.sh @@ -2,7 +2,7 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # Author: Martin Schlemmer <azarah@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/files/scan_libgcc_linked_ssp.sh,v 1.3 2004/07/15 00:59:02 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/files/scan_libgcc_linked_ssp.sh,v 1.4 2007/05/05 05:13:15 vapier Exp $ usage() { cat << "USAGE_END" @@ -22,8 +22,8 @@ then usage fi -source /etc/profile -source /sbin/functions.sh +source /etc/profile || exit 1 +source /etc/init.d/functions.sh || exit 1 AWKDIR="$(portageq envvar PORTDIR)/sys-devel/gcc/files/awk" |