Gentoo Archives: gentoo-commits

From: "Matsuu Takuto (matsuu)" <matsuu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-devel/distcc/files/3.0: init
Date: Wed, 05 Nov 2008 22:52:15
Message-Id: E1KxrES-0007UJ-1l@stork.gentoo.org
1 matsuu 08/11/05 22:52:12
2
3 Modified: init
4 Log:
5 Added GCC_SPECS to init.d, bug #164818. Fixed uninitialized issue, bug #244847. Removed DISTCC_POTENTIAL_HOSTS variable. Added IPv6 elog.
6 (Portage version: 2.2_rc12/cvs/Linux 2.6.27-gentoo x86_64)
7
8 Revision Changes Path
9 1.3 sys-devel/distcc/files/3.0/init
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/distcc/files/3.0/init?rev=1.3&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/distcc/files/3.0/init?rev=1.3&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/distcc/files/3.0/init?r1=1.2&r2=1.3
14
15 Index: init
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sys-devel/distcc/files/3.0/init,v
18 retrieving revision 1.2
19 retrieving revision 1.3
20 diff -u -r1.2 -r1.3
21 --- init 25 Oct 2008 06:39:17 -0000 1.2
22 +++ init 5 Nov 2008 22:52:11 -0000 1.3
23 @@ -1,7 +1,7 @@
24 #!/sbin/runscript
25 # Copyright 1999-2008 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/distcc/files/3.0/init,v 1.2 2008/10/25 06:39:17 matsuu Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/distcc/files/3.0/init,v 1.3 2008/11/05 22:52:11 matsuu Exp $
29
30 depend() {
31 need net
32 @@ -10,6 +10,8 @@
33
34 start() {
35 ebegin "Starting distccd"
36 + # Load GCC_SPECS from profile.env bug #164818
37 + GCC_SPECS="$(. /etc/profile.env; echo "${GCC_SPECS}")" \
38 PATH="$(gcc-config --get-bin-path):${PATH}" \
39 start-stop-daemon --start --quiet --exec "${DISTCCD_EXEC}" -- \
40 --daemon --pid-file "${DISTCCD_PIDFILE}" --user distcc \