diff options
author | Benda XU <heroxbd@gentoo.org> | 2012-08-11 11:11:52 +0000 |
---|---|---|
committer | Benda XU <heroxbd@gentoo.org> | 2012-08-11 11:11:52 +0000 |
commit | 62f8dc935cb4cf542fb13a74baf5c2c43a6b8697 (patch) | |
tree | 6fd5b8f390bdfb1898dea384243225786636ffe4 /sys-process | |
parent | version bump (diff) | |
download | gentoo-2-62f8dc935cb4cf542fb13a74baf5c2c43a6b8697.tar.gz gentoo-2-62f8dc935cb4cf542fb13a74baf5c2c43a6b8697.tar.bz2 gentoo-2-62f8dc935cb4cf542fb13a74baf5c2c43a6b8697.zip |
fix relative directory and apply trivial prefix support
(Portage version: 2.1.10.65/cvs/Linux x86_64)
Diffstat (limited to 'sys-process')
-rw-r--r-- | sys-process/runit/ChangeLog | 5 | ||||
-rw-r--r-- | sys-process/runit/runit-2.1.1-r1.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/sys-process/runit/ChangeLog b/sys-process/runit/ChangeLog index 17f30b9ba21d..f6d9bf620c1c 100644 --- a/sys-process/runit/ChangeLog +++ b/sys-process/runit/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-process/runit # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-process/runit/ChangeLog,v 1.34 2012/02/06 03:13:33 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/runit/ChangeLog,v 1.35 2012/08/11 11:11:52 heroxbd Exp $ + + 11 Aug 2012; Benda Xu <heroxbd@gentoo.org> runit-2.1.1-r1.ebuild: + fix relative directory and apply trivial prefix support 06 Feb 2012; Mike Frysinger <vapier@gentoo.org> runit-2.1.1-r1.ebuild: Don't run env-update in pkg_* funcs -- the PM does that. diff --git a/sys-process/runit/runit-2.1.1-r1.ebuild b/sys-process/runit/runit-2.1.1-r1.ebuild index 98aa2d88df16..d00939173f70 100644 --- a/sys-process/runit/runit-2.1.1-r1.ebuild +++ b/sys-process/runit/runit-2.1.1-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-process/runit/runit-2.1.1-r1.ebuild,v 1.2 2012/02/06 03:13:33 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/runit/runit-2.1.1-r1.ebuild,v 1.3 2012/08/11 11:11:52 heroxbd Exp $ EAPI="3" @@ -19,7 +19,7 @@ S=${WORKDIR}/admin/${P}/src src_prepare() { # we either build everything or nothing static - sed -i -e 's:-static: :' src/Makefile + sed -i -e 's:-static: :' Makefile } src_configure() { @@ -38,7 +38,7 @@ src_install() { dobin $(<../package/commands) || die "dobin" dodir /sbin - mv "${D}"/usr/bin/{runit-init,runit,utmpset} "${D}"/sbin/ || die "dosbin" + mv "${ED}"/usr/bin/{runit-init,runit,utmpset} "${ED}"/sbin/ || die "dosbin" cd "${S}"/.. dodoc package/{CHANGES,README,THANKS,TODO} |