summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexys Jacob <ultrabug@gentoo.org>2011-12-27 16:09:23 +0000
committerAlexys Jacob <ultrabug@gentoo.org>2011-12-27 16:09:23 +0000
commitf8345bbe5d03ad22b7b4da4aa88b0d999549ae55 (patch)
treed6e15cd32c7ed809b8863198dd761429eff42d64 /sys-devel
parentReimplement qt_use() more concisely, fix/clarify doc. (diff)
downloadgentoo-2-f8345bbe5d03ad22b7b4da4aa88b0d999549ae55.tar.gz
gentoo-2-f8345bbe5d03ad22b7b4da4aa88b0d999549ae55.tar.bz2
gentoo-2-f8345bbe5d03ad22b7b4da4aa88b0d999549ae55.zip
fix init script, fix #390063
(Portage version: 2.1.10.40/cvs/Linux x86_64)
Diffstat (limited to 'sys-devel')
-rw-r--r--sys-devel/distcc/ChangeLog5
-rwxr-xr-xsys-devel/distcc/files/3.1/init8
2 files changed, 8 insertions, 5 deletions
diff --git a/sys-devel/distcc/ChangeLog b/sys-devel/distcc/ChangeLog
index cc4852e051ce..68d87b569d69 100644
--- a/sys-devel/distcc/ChangeLog
+++ b/sys-devel/distcc/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sys-devel/distcc
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/distcc/ChangeLog,v 1.211 2011/10/28 05:41:06 matsuu Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/distcc/ChangeLog,v 1.212 2011/12/27 16:09:23 ultrabug Exp $
+
+ 27 Dec 2011; Ultrabug <ultrabug@gentoo.org> files/3.1/init:
+ Fix 3.1 series init script wrt #390063 thanks to André-Sebastian Liebe.
*distcc-3.2_rc1 (28 Oct 2011)
diff --git a/sys-devel/distcc/files/3.1/init b/sys-devel/distcc/files/3.1/init
index 7c4277c5a441..02a9dc25e512 100755
--- a/sys-devel/distcc/files/3.1/init
+++ b/sys-devel/distcc/files/3.1/init
@@ -1,7 +1,7 @@
#!/sbin/runscript
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/distcc/files/3.1/init,v 1.1 2009/03/19 17:56:09 matsuu Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/distcc/files/3.1/init,v 1.2 2011/12/27 16:09:23 ultrabug Exp $
depend() {
need net
@@ -19,8 +19,8 @@ start() {
# Load PATH and GCC_SPECS from gcc-config, bug #262773
eval "$(gcc-config -E)"
- start-stop-daemon --start --quiet --exec "${DISTCCD_EXEC}" -- \
- --daemon --pid-file "${DISTCCD_PIDFILE}" --user distcc \
+ start-stop-daemon --start --quiet --exec "${DISTCCD_EXEC}" --user distcc -- \
+ --daemon --pid-file "${DISTCCD_PIDFILE}" \
${DISTCCD_OPTS}
eend $?
}