summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2011-07-28 13:47:50 +0000
committerZac Medico <zmedico@gentoo.org>2011-07-28 13:47:50 +0000
commite95fbb3e9e315249aee52f17b6fa75c9661ba8c6 (patch)
tree1d6f967721cbbf17ccff6d0e9918905b2f3104f0 /eclass/systemd.eclass
parentunleash TeX Live 2011 to ~arch (diff)
downloadgentoo-2-e95fbb3e9e315249aee52f17b6fa75c9661ba8c6.tar.gz
gentoo-2-e95fbb3e9e315249aee52f17b6fa75c9661ba8c6.tar.bz2
gentoo-2-e95fbb3e9e315249aee52f17b6fa75c9661ba8c6.zip
systemd_dounit: fix for prefix
Diffstat (limited to 'eclass/systemd.eclass')
-rw-r--r--eclass/systemd.eclass6
1 files changed, 4 insertions, 2 deletions
diff --git a/eclass/systemd.eclass b/eclass/systemd.eclass
index f171a9b36bff..86bc6d1d0a2f 100644
--- a/eclass/systemd.eclass
+++ b/eclass/systemd.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/systemd.eclass,v 1.6 2011/06/24 13:13:24 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/systemd.eclass,v 1.7 2011/07/28 13:47:50 zmedico Exp $
# @ECLASS: systemd.eclass
# @MAINTAINER:
@@ -47,10 +47,12 @@ systemd_get_unitdir() {
# Install systemd unit(s). Uses doins, thus it is fatal in EAPI 4
# and non-fatal in earlier EAPIs.
systemd_dounit() {
+ has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX=
debug-print-function ${FUNCNAME} "${@}"
(
- insinto "$(systemd_get_unitdir)"
+ local ud=$(systemd_get_unitdir)
+ insinto "${ud#${EPREFIX}}"
doins "${@}"
)
}