summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2016-12-08 11:46:20 -0500
committerMike Frysinger <vapier@gentoo.org>2016-12-08 11:47:03 -0500
commit9def35446cd785b073a81e26f3113a6e663f1f8f (patch)
treef351c02375e30dace861c03400e9d405deabb26a /dev-libs/gmp/gmp-6.0.0a.ebuild
parentnet-misc/teamviewer: version bumps, removed old versions (diff)
downloadgentoo-9def35446cd785b073a81e26f3113a6e663f1f8f.tar.gz
gentoo-9def35446cd785b073a81e26f3113a6e663f1f8f.tar.bz2
gentoo-9def35446cd785b073a81e26f3113a6e663f1f8f.zip
dev-libs/gmp: make sure configure stays +x
Depending on the version of patch used, updates to the configure script might have lost the +x bit. Since we already chmod the main script, add the wrapped one to the list too to workaround patch misbehavior.
Diffstat (limited to 'dev-libs/gmp/gmp-6.0.0a.ebuild')
-rw-r--r--dev-libs/gmp/gmp-6.0.0a.ebuild3
1 files changed, 2 insertions, 1 deletions
diff --git a/dev-libs/gmp/gmp-6.0.0a.ebuild b/dev-libs/gmp/gmp-6.0.0a.ebuild
index 62f3477c389b..3beced7294a5 100644
--- a/dev-libs/gmp/gmp-6.0.0a.ebuild
+++ b/dev-libs/gmp/gmp-6.0.0a.ebuild
@@ -43,7 +43,8 @@ src_prepare() {
#!/bin/sh
exec env ABI="${GMPABI}" "$0.wrapped" "$@"
EOF
- chmod a+rx configure
+ # Patches to original configure might have lost the +x bit.
+ chmod a+rx configure{,.wrapped}
}
multilib_src_configure() {