Gentoo Archives: gentoo-commits

From: "Anthony G. Basile (blueness)" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-devel/binutils-config/files: binutils-config-4
Date: Tue, 30 Dec 2014 15:10:41
Message-Id: 20141230151036.E060BE801@oystercatcher.gentoo.org
1 blueness 14/12/30 15:10:36
2
3 Modified: binutils-config-4
4 Log:
5 Address bug #504120
6
7 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
8
9 Revision Changes Path
10 1.2 sys-devel/binutils-config/files/binutils-config-4
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/binutils-config/files/binutils-config-4?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/binutils-config/files/binutils-config-4?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/binutils-config/files/binutils-config-4?r1=1.1&r2=1.2
15
16 Index: binutils-config-4
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-devel/binutils-config/files/binutils-config-4,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- binutils-config-4 29 Jul 2014 11:15:38 -0000 1.1
23 +++ binutils-config-4 30 Dec 2014 15:10:36 -0000 1.2
24 @@ -1,7 +1,7 @@
25 #!/bin/bash
26 # Copyright 1999-2014 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-config/files/binutils-config-4,v 1.1 2014/07/29 11:15:38 vapier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-config/files/binutils-config-4,v 1.2 2014/12/30 15:10:36 blueness Exp $
30
31 # Format of /etc/env.d/binutils/:
32 # config-TARGET: CURRENT=version for TARGET
33 @@ -16,8 +16,9 @@
34 trap ":" INT QUIT TSTP
35
36 argv0=${0##*/}
37 -source /etc/init.d/functions.sh || {
38 - echo "${argv0}: Could not source /etc/init.d/functions.sh!" 1>&2
39 +FUNCTIONS_SH="/lib/gentoo/functions.sh"
40 +source ${FUNCTIONS_SH} || {
41 + echo "${argv0}: Could not source ${FUNCTIONS_SH}!" 1>&2
42 exit 1
43 }
44 esyslog() { :; }
45 @@ -383,7 +384,7 @@
46 -h|--help) usage 0 ;;
47 -V|--version)
48 unset Header
49 - 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 $"
50 + 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 $"
51 cvsver=${cvsver##*binutils-config-}
52 bver=${cvsver%%,v *}
53 cvsver=${cvsver#* }