diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2014-12-30 15:10:36 +0000 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2014-12-30 15:10:36 +0000 |
commit | 03474e06308ece924273b2066f4a54436555f099 (patch) | |
tree | a0e0258a998f3423d91bf9fcd915a15d9046eff3 /sys-devel/binutils-config/files | |
parent | Depend on correct slots of libwpd and libwpg, bug 522338 (diff) | |
download | gentoo-2-03474e06308ece924273b2066f4a54436555f099.tar.gz gentoo-2-03474e06308ece924273b2066f4a54436555f099.tar.bz2 gentoo-2-03474e06308ece924273b2066f4a54436555f099.zip |
Address bug #504120
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
Diffstat (limited to 'sys-devel/binutils-config/files')
-rwxr-xr-x | sys-devel/binutils-config/files/binutils-config-4 | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sys-devel/binutils-config/files/binutils-config-4 b/sys-devel/binutils-config/files/binutils-config-4 index a932aabead3a..b860b291b78d 100755 --- a/sys-devel/binutils-config/files/binutils-config-4 +++ b/sys-devel/binutils-config/files/binutils-config-4 @@ -1,7 +1,7 @@ #!/bin/bash # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-config/files/binutils-config-4,v 1.1 2014/07/29 11:15:38 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-config/files/binutils-config-4,v 1.2 2014/12/30 15:10:36 blueness Exp $ # Format of /etc/env.d/binutils/: # config-TARGET: CURRENT=version for TARGET @@ -16,8 +16,9 @@ cd / trap ":" INT QUIT TSTP argv0=${0##*/} -source /etc/init.d/functions.sh || { - echo "${argv0}: Could not source /etc/init.d/functions.sh!" 1>&2 +FUNCTIONS_SH="/lib/gentoo/functions.sh" +source ${FUNCTIONS_SH} || { + echo "${argv0}: Could not source ${FUNCTIONS_SH}!" 1>&2 exit 1 } esyslog() { :; } @@ -383,7 +384,7 @@ while [[ $# -gt 0 ]] ; do -h|--help) usage 0 ;; -V|--version) unset Header - cvsver="$Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-config/files/binutils-config-4,v 1.1 2014/07/29 11:15:38 vapier Exp $" + cvsver="$Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-config/files/binutils-config-4,v 1.2 2014/12/30 15:10:36 blueness Exp $" cvsver=${cvsver##*binutils-config-} bver=${cvsver%%,v *} cvsver=${cvsver#* } |