diff options
author | Mike Frysinger <vapier@gentoo.org> | 2016-12-08 11:46:20 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2016-12-08 11:47:03 -0500 |
commit | 9def35446cd785b073a81e26f3113a6e663f1f8f (patch) | |
tree | f351c02375e30dace861c03400e9d405deabb26a /dev-libs | |
parent | net-misc/teamviewer: version bumps, removed old versions (diff) | |
download | gentoo-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')
-rw-r--r-- | dev-libs/gmp/gmp-6.0.0a.ebuild | 3 | ||||
-rw-r--r-- | dev-libs/gmp/gmp-6.1.0.ebuild | 3 | ||||
-rw-r--r-- | dev-libs/gmp/gmp-6.1.1.ebuild | 3 |
3 files changed, 6 insertions, 3 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() { diff --git a/dev-libs/gmp/gmp-6.1.0.ebuild b/dev-libs/gmp/gmp-6.1.0.ebuild index 519ff18c3031..456ed0492a24 100644 --- a/dev-libs/gmp/gmp-6.1.0.ebuild +++ b/dev-libs/gmp/gmp-6.1.0.ebuild @@ -49,7 +49,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() { diff --git a/dev-libs/gmp/gmp-6.1.1.ebuild b/dev-libs/gmp/gmp-6.1.1.ebuild index 6aa461d57909..3096454b0d31 100644 --- a/dev-libs/gmp/gmp-6.1.1.ebuild +++ b/dev-libs/gmp/gmp-6.1.1.ebuild @@ -48,7 +48,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() { |