diff options
author | Michał Górny <mgorny@gentoo.org> | 2016-07-03 15:27:43 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2016-07-03 15:29:24 +0200 |
commit | 2c9e3ae1f1afaf8eefb25ed43ba4a077eab3d92f (patch) | |
tree | f40e210386215f08d65ed46fbebec978f9ac1f4b /app-arch/zpaq | |
parent | 7b99fb52d2c9f8e3a3ffc9659bfe17c8906af09d (diff) | |
download | gentoo-2c9e3ae1f1afaf8eefb25ed43ba4a077eab3d92f.tar.gz gentoo-2c9e3ae1f1afaf8eefb25ed43ba4a077eab3d92f.tar.xz |
app-arch/zpaq: Fix Hardened w/ USE=jit, #411521
Diffstat (limited to 'app-arch/zpaq')
-rw-r--r-- | app-arch/zpaq/zpaq-7.13-r1.ebuild | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app-arch/zpaq/zpaq-7.13-r1.ebuild b/app-arch/zpaq/zpaq-7.13-r1.ebuild index a05100ba522..d4dbbe979a8 100644 --- a/app-arch/zpaq/zpaq-7.13-r1.ebuild +++ b/app-arch/zpaq/zpaq-7.13-r1.ebuild @@ -4,7 +4,7 @@ EAPI=6 -inherit flag-o-matic toolchain-funcs +inherit flag-o-matic pax-utils toolchain-funcs MY_P=${PN}${PV/./} DESCRIPTION="Journaling incremental deduplicating archiving compressor" @@ -38,11 +38,13 @@ src_compile() { src_test() { local -x LD_LIBRARY_PATH=".${LD_LIBRARY_PATH+:${LD_LIBRARY_PATH}}" + use jit && pax-mark m zpaq default } src_install() { emake install PREFIX="${ED%/}"/usr LIBDIR="\$(PREFIX)/$(get_libdir)" + use jit && pax-mark m "${ED%/}"/usr/bin/zpaq einstalldocs } |