summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2017-08-26 18:03:46 +0200
committerMichał Górny <mgorny@gentoo.org>2017-08-26 18:10:42 +0200
commitf321a4dde2b92df597224762e3b1ba5042090064 (patch)
treea893def9243735cec3e3ee57a9794a0be6d8ed7d /sys-devel/distcc
parentdev-vcs/cvs: Fix command injection (CVE-2017-12836). (diff)
downloadgentoo-f321a4dde2b92df597224762e3b1ba5042090064.tar.gz
gentoo-f321a4dde2b92df597224762e3b1ba5042090064.tar.bz2
gentoo-f321a4dde2b92df597224762e3b1ba5042090064.zip
sys-devel/distcc: Move unnecessary vars out of global scope, #628978
Diffstat (limited to 'sys-devel/distcc')
-rw-r--r--sys-devel/distcc/distcc-3.2_rc1-r5.ebuild6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys-devel/distcc/distcc-3.2_rc1-r5.ebuild b/sys-devel/distcc/distcc-3.2_rc1-r5.ebuild
index 2107168d7cef..64e27b026163 100644
--- a/sys-devel/distcc/distcc-3.2_rc1-r5.ebuild
+++ b/sys-devel/distcc/distcc-3.2_rc1-r5.ebuild
@@ -44,12 +44,12 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}"
S="${WORKDIR}/${MY_P}"
-DCCC_PATH="/usr/$(get_libdir)/distcc/bin"
-DISTCC_VERBOSE="0"
-
pkg_setup() {
enewuser distcc 240 -1 -1 daemon
python-single-r1_pkg_setup
+
+ DCCC_PATH="/usr/$(get_libdir)/distcc/bin"
+ DISTCC_VERBOSE="0"
}
src_prepare() {