From 13d407057928f96ce29ef4988b7bd4400db8c060 Mon Sep 17 00:00:00 2001 From: Leonardo Hernández Hernández Date: Fri, 6 Jan 2023 10:37:54 -0600 Subject: app-shells/bash: fix build with gcc and USE=pgo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes: https://bugs.gentoo.org/889848 Signed-off-by: Leonardo Hernández Hernández Closes: https://github.com/gentoo/gentoo/pull/28985 Signed-off-by: Sam James --- app-shells/bash/bash-5.2_p15.ebuild | 4 +++- app-shells/bash/bash-9999.ebuild | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) (limited to 'app-shells') diff --git a/app-shells/bash/bash-5.2_p15.ebuild b/app-shells/bash/bash-5.2_p15.ebuild index a1a2a14ae0e4..9dbde4810a73 100644 --- a/app-shells/bash/bash-5.2_p15.ebuild +++ b/app-shells/bash/bash-5.2_p15.ebuild @@ -246,7 +246,9 @@ src_compile() { emake CFLAGS="${CFLAGS} -fprofile-generate=${T}/pgo -fprofile-dir=${T}/pgo" -k check - tc-is-clang && llvm-profdata merge "${T}"/pgo --output="${T}"/pgo/default.profdata || die + if tc-is-clang; then + llvm-profdata merge "${T}"/pgo --output="${T}"/pgo/default.profdata || die + fi # Rebuild Bash using the profiling data we just generated. emake clean diff --git a/app-shells/bash/bash-9999.ebuild b/app-shells/bash/bash-9999.ebuild index b0207e51036e..b491dd7b04e3 100644 --- a/app-shells/bash/bash-9999.ebuild +++ b/app-shells/bash/bash-9999.ebuild @@ -246,7 +246,9 @@ src_compile() { emake CFLAGS="${CFLAGS} -fprofile-generate=${T}/pgo -fprofile-dir=${T}/pgo" -k check - tc-is-clang && llvm-profdata merge "${T}"/pgo --output="${T}"/pgo/default.profdata || die + if tc-is-clang; then + llvm-profdata merge "${T}"/pgo --output="${T}"/pgo/default.profdata || die + fi # Rebuild Bash using the profiling data we just generated. emake clean -- cgit v1.2.3-65-gdbad