Gentoo Archives: gentoo-commits

From: "Anthony G. Basile (blueness)" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo commit in src/patchsets/glibc/extra/locale: locale-gen
Date: Sun, 28 Dec 2014 18:45:23
Message-Id: 20141228184518.E7C78E5E1@oystercatcher.gentoo.org
1 blueness 14/12/28 18:45:18
2
3 Modified: locale-gen
4 Log:
5 extra/locale/locale-gen: source /lib/gentoo/functions.sh, bug #478764
6
7 Revision Changes Path
8 1.36 src/patchsets/glibc/extra/locale/locale-gen
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/extra/locale/locale-gen?rev=1.36&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/extra/locale/locale-gen?rev=1.36&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/extra/locale/locale-gen?r1=1.35&r2=1.36
13
14 Index: locale-gen
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo/src/patchsets/glibc/extra/locale/locale-gen,v
17 retrieving revision 1.35
18 retrieving revision 1.36
19 diff -u -r1.35 -r1.36
20 --- locale-gen 13 Jun 2014 22:07:18 -0000 1.35
21 +++ locale-gen 28 Dec 2014 18:45:18 -0000 1.36
22 @@ -14,8 +14,9 @@
23 EPREFIX=""
24 fi
25
26 -source "${EPREFIX}"/etc/init.d/functions.sh || {
27 - echo "${argv0}: Could not source /etc/init.d/functions.sh!" 1>&2
28 +FUNCTIONS_SH="/lib/gentoo/functions.sh"
29 +source "${EPREFIX}"${FUNCTIONS_SH} || {
30 + echo "${argv0}: Could not source ${FUNCTIONS_SH}!" 1>&2
31 exit 1
32 }
33
34 @@ -51,7 +52,7 @@
35 }
36 show_version() {
37 local b="(" a=")"
38 - local cvsver="$Revision: 1.35 $b $Date: 2014/06/13 22:07:18 $a"
39 + local cvsver="$Revision: 1.36 $b $Date: 2014/12/28 18:45:18 $a"
40 echo "locale-gen-${cvsver//: }"
41 exit 0
42 }