diff options
author | Nicholas Vinson <nvinson234@gmail.com> | 2016-06-15 05:59:27 -0700 |
---|---|---|
committer | Göktürk Yüksek <gokturk@gentoo.org> | 2016-06-15 11:42:58 -0400 |
commit | 1c80f594d8971d59cce294aa6720ddc5a4c2f954 (patch) | |
tree | 7b369a2ddd2882c8a996d5f67ad863bbfc670213 /net-firewall/nftables | |
parent | sys-libs/libunwind: Stable for PPC64 (bug #585830). (diff) | |
download | gentoo-1c80f594d8971d59cce294aa6720ddc5a4c2f954.tar.gz gentoo-1c80f594d8971d59cce294aa6720ddc5a4c2f954.tar.bz2 gentoo-1c80f594d8971d59cce294aa6720ddc5a4c2f954.zip |
net-firewall/nftables: correct install utility function calls
Previous modification changed the cp command to:
instinto /usr/libexec/${PN}
doins "${FILESDIR}"/libexec/${PN}.sh
However, this change is incorrect as it strips the exec flag from ${PN}.sh.
This commit changes the insinto and doins to exeinto and doexe which fixes the
problem.
Gentoo-bug: 586000
Package-Manager: portage-2.3.0_rc1
Diffstat (limited to 'net-firewall/nftables')
-rw-r--r-- | net-firewall/nftables/nftables-0.5-r4.ebuild (renamed from net-firewall/nftables/nftables-0.5-r3.ebuild) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net-firewall/nftables/nftables-0.5-r3.ebuild b/net-firewall/nftables/nftables-0.5-r4.ebuild index aa54e058a931..9ec62ec9f236 100644 --- a/net-firewall/nftables/nftables-0.5-r3.ebuild +++ b/net-firewall/nftables/nftables-0.5-r4.ebuild @@ -56,8 +56,8 @@ src_install() { default dodir /usr/libexec/${PN} - insinto /usr/libexec/${PN} - doins "${FILESDIR}"/libexec/${PN}.sh + exeinto /usr/libexec/${PN} + doexe "${FILESDIR}"/libexec/${PN}.sh newconfd "${FILESDIR}"/${PN}.confd ${PN} newinitd "${FILESDIR}"/${PN}.init-r2 ${PN} |