diff options
author | Alexandre Rostovtsev <tetromino@gentoo.org> | 2015-09-10 20:15:49 -0400 |
---|---|---|
committer | Alexandre Rostovtsev <tetromino@gentoo.org> | 2015-09-10 20:16:08 -0400 |
commit | 2972c432dcd6488f548e8ca467ec5befa8248004 (patch) | |
tree | e2fa08d4806fc3bc75ea67ac4b743e6ace13b133 /dev-lang | |
parent | app-emulation/virtualbox: Attempt to fix bug #555370 (diff) | |
download | gentoo-2972c432dcd6488f548e8ca467ec5befa8248004.tar.gz gentoo-2972c432dcd6488f548e8ca467ec5befa8248004.tar.bz2 gentoo-2972c432dcd6488f548e8ca467ec5befa8248004.zip |
dev-lang/orc: fix pax-mark calls and make them non-fatal
Gentoo-Bug: 560126
Reported-by: orionbelt2, Thomas Beutin
Package-Manager: portage-2.2.20.1
Diffstat (limited to 'dev-lang')
-rw-r--r-- | dev-lang/orc/orc-0.4.24.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dev-lang/orc/orc-0.4.24.ebuild b/dev-lang/orc/orc-0.4.24.ebuild index c56d33c849f6..80fe7b378175 100644 --- a/dev-lang/orc/orc-0.4.24.ebuild +++ b/dev-lang/orc/orc-0.4.24.ebuild @@ -41,9 +41,9 @@ src_configure() { src_install() { autotools-multilib_src_install if use hardened; then - pax-mark m usr/bin/orc-bugreport || die - pax-mark m usr/bin/orcc || die - pax-mark m usr/$(get_libdir)/liborc*.so* || die + pax-mark m "${ED}"usr/bin/orc-bugreport + pax-mark m "${ED}"usr/bin/orcc + pax-mark m "${ED}"usr/$(get_libdir)/liborc*.so* fi } |