diff options
author | Matthew Smith <matthew@gentoo.org> | 2022-06-29 08:32:18 +0100 |
---|---|---|
committer | Matthew Smith <matthew@gentoo.org> | 2022-06-29 08:34:27 +0100 |
commit | ed0103e1efc72ff81c5cdc894fe3d81851b5637b (patch) | |
tree | 9ca7b69d46c31b8c6efe10eadf62adb6fc4cf0cf /sys-devel/mold | |
parent | app-editors/nano: update maintainers (add base-system@) (diff) | |
download | gentoo-ed0103e1efc72ff81c5cdc894fe3d81851b5637b.tar.gz gentoo-ed0103e1efc72ff81c5cdc894fe3d81851b5637b.tar.bz2 gentoo-ed0103e1efc72ff81c5cdc894fe3d81851b5637b.zip |
sys-devel/mold: fix prepare phase when glibc has no static-pie
Closes: https://bugs.gentoo.org/854474
Signed-off-by: Matthew Smith <matthew@gentoo.org>
Diffstat (limited to 'sys-devel/mold')
-rw-r--r-- | sys-devel/mold/mold-1.3.0.ebuild | 2 | ||||
-rw-r--r-- | sys-devel/mold/mold-9999.ebuild | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys-devel/mold/mold-1.3.0.ebuild b/sys-devel/mold/mold-1.3.0.ebuild index 1fe9a5a08e35..2a7faac5052d 100644 --- a/sys-devel/mold/mold-1.3.0.ebuild +++ b/sys-devel/mold/mold-1.3.0.ebuild @@ -62,7 +62,7 @@ src_prepare() { # static-pie tests require glibc built with static-pie support if ! has_version -d 'sys-libs/glibc[static-pie(+)]'; then - rm test/elf/{hello,ifunc}-static-pie.sh || die + rm test/elf/{,ifunc-}static-pie.sh || die fi } diff --git a/sys-devel/mold/mold-9999.ebuild b/sys-devel/mold/mold-9999.ebuild index 1fe9a5a08e35..2a7faac5052d 100644 --- a/sys-devel/mold/mold-9999.ebuild +++ b/sys-devel/mold/mold-9999.ebuild @@ -62,7 +62,7 @@ src_prepare() { # static-pie tests require glibc built with static-pie support if ! has_version -d 'sys-libs/glibc[static-pie(+)]'; then - rm test/elf/{hello,ifunc}-static-pie.sh || die + rm test/elf/{,ifunc-}static-pie.sh || die fi } |