diff options
author | Michał Górny <mgorny@gentoo.org> | 2018-06-08 09:13:40 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2018-06-13 10:09:56 +0200 |
commit | 85f9afe7a228bbb9ead53e773e70e600b541417f (patch) | |
tree | ecfeef2ffb2d3e93c38a03204d86f14b9e09a582 /eclass | |
parent | desktop.eclass: Sanitize insopts (diff) | |
download | gentoo-85f9afe7a228bbb9ead53e773e70e600b541417f.tar.gz gentoo-85f9afe7a228bbb9ead53e773e70e600b541417f.tar.bz2 gentoo-85f9afe7a228bbb9ead53e773e70e600b541417f.zip |
eutils.eclass: Sanitize exeopts
Sanitize exeopts when calling newexe, in order to avoid prior insopts
calls accidentally affecting make_wrapper.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/eutils.eclass | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/eclass/eutils.eclass b/eclass/eutils.eclass index 7840afbb77b9..81621df78e63 100644 --- a/eclass/eutils.eclass +++ b/eclass/eutils.eclass @@ -172,6 +172,7 @@ make_wrapper() { if [[ -n ${path} ]] ; then ( + exeopts -m 0755 exeinto "${path}" newexe "${tmpwrapper}" "${wrapper}" ) || die |