diff options
author | 2016-08-04 00:21:16 -0400 | |
---|---|---|
committer | 2016-08-04 00:21:16 -0400 | |
commit | 7bfef0ed0bc61eaee2088072558d37e11818cfe1 (patch) | |
tree | b548d528e7a9e00816ba22a0d55ce72e9eab1a22 /dev-lang/python/python-2.7.12.ebuild | |
parent | dev-perl/File-DesktopEntry: Remove POD Authortests (diff) | |
download | gentoo-7bfef0ed0bc61eaee2088072558d37e11818cfe1.tar.gz gentoo-7bfef0ed0bc61eaee2088072558d37e11818cfe1.tar.bz2 gentoo-7bfef0ed0bc61eaee2088072558d37e11818cfe1.zip |
Revert "dev-lang/python: disable MPROTECT"
This reverts commit b8cb87b5af9ab23e60864a4c66988c0f595f5b77.
Diffstat (limited to 'dev-lang/python/python-2.7.12.ebuild')
-rw-r--r-- | dev-lang/python/python-2.7.12.ebuild | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/dev-lang/python/python-2.7.12.ebuild b/dev-lang/python/python-2.7.12.ebuild index 2901f8f0870e..992882b2ebd3 100644 --- a/dev-lang/python/python-2.7.12.ebuild +++ b/dev-lang/python/python-2.7.12.ebuild @@ -216,7 +216,12 @@ src_compile() { cd "${BUILD_DIR}" || die emake - 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() { |