diff options
Diffstat (limited to 'dev-lang/python/python-3.4.5.ebuild')
-rw-r--r-- | dev-lang/python/python-3.4.5.ebuild | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/dev-lang/python/python-3.4.5.ebuild b/dev-lang/python/python-3.4.5.ebuild index 88f5362878bc..433a3a373da8 100644 --- a/dev-lang/python/python-3.4.5.ebuild +++ b/dev-lang/python/python-3.4.5.ebuild @@ -175,7 +175,12 @@ src_compile() { emake CPPFLAGS= CFLAGS= LDFLAGS= - pax-mark m python + # Work around bug 329499. See also bug 413751 and 457194. + if has_version dev-libs/libffi[pax_kernel]; then + pax-mark E python + else + pax-mark m python + fi } src_test() { |