diff options
author | Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org> | 2008-12-02 17:06:04 +0000 |
---|---|---|
committer | Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org> | 2008-12-02 17:06:04 +0000 |
commit | b29d72510c25a002468e98eba46d4784be034f88 (patch) | |
tree | 5a27f152315d5c6b5c572c033f746bf785cdf087 /app-admin | |
parent | Marking crda-0.9.5 ~ppc64 for bug 249606 (diff) | |
download | gentoo-2-b29d72510c25a002468e98eba46d4784be034f88.tar.gz gentoo-2-b29d72510c25a002468e98eba46d4784be034f88.tar.bz2 gentoo-2-b29d72510c25a002468e98eba46d4784be034f88.zip |
Removed the executable bit from files/sysrqd.init as it's installed through newinitd, a wrapper for doinitd, that calls doexe which uses the EXEOPTIONS variable that
defaults to -m0755.
Quoted some vars.
(Portage version: 2.2_rc16/cvs/Linux 2.6.27-gentoo-r2 x86_64)
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/sysrqd/ChangeLog | 10 | ||||
-rw-r--r-- | app-admin/sysrqd/sysrqd-9.ebuild | 10 |
2 files changed, 13 insertions, 7 deletions
diff --git a/app-admin/sysrqd/ChangeLog b/app-admin/sysrqd/ChangeLog index 0f05b0803af8..0da21a2969cc 100644 --- a/app-admin/sysrqd/ChangeLog +++ b/app-admin/sysrqd/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-admin/sysrqd -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/sysrqd/ChangeLog,v 1.2 2007/04/30 20:03:39 genone Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/sysrqd/ChangeLog,v 1.3 2008/12/02 17:06:04 jmbsvicetto Exp $ + + 02 Dec 2008; Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org> + ChangeLog: + Removed the executable bit from files/sysrqd.init as it's installed + through newinitd, a wrapper for doinitd, that calls doexe which uses the + EXEOPTIONS variable that defaults to -m0755. 30 Apr 2007; Marius Mauch <genone@gentoo.org> sysrqd-9.ebuild: Replacing einfo with elog diff --git a/app-admin/sysrqd/sysrqd-9.ebuild b/app-admin/sysrqd/sysrqd-9.ebuild index 87159873900d..d44b9c212cda 100644 --- a/app-admin/sysrqd/sysrqd-9.ebuild +++ b/app-admin/sysrqd/sysrqd-9.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/sysrqd/sysrqd-9.ebuild,v 1.2 2007/04/30 20:03:39 genone Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/sysrqd/sysrqd-9.ebuild,v 1.3 2008/12/02 17:06:04 jmbsvicetto Exp $ inherit eutils toolchain-funcs @@ -15,8 +15,8 @@ DEPEND="" src_unpack() { unpack ${A} - cd ${S} - epatch ${FILESDIR}/${P}-config.patch + cd "${S}" + epatch "${FILESDIR}/${P}-config.patch" } src_compile() { @@ -26,7 +26,7 @@ src_compile() { src_install() { dosbin sysrqd - newinitd ${FILESDIR}/sysrqd.init sysrqd + newinitd "${FILESDIR}/sysrqd.init sysrqd" local bindip='127.0.0.1' secret declare -i secret |