commit: 6a7bc278de50e4f3dc4e88338b59b047bd093d10
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 29 13:44:43 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jun 29 14:29:46 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a7bc278
profiles/features/prefix/standalone: fix GCC sed for 12+
GCC 12 renamed a bunch of .c -> .cc. Reported by Ionen.
Signed-off-by: Sam James <sam <AT> gentoo.org>
profiles/features/prefix/standalone/profile.bashrc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/profiles/features/prefix/standalone/profile.bashrc
b/profiles/features/prefix/standalone/profile.bashrc
index 5423535d0fc9..d23eeb81797d 100644
--- a/profiles/features/prefix/standalone/profile.bashrc
+++ b/profiles/features/prefix/standalone/profile.bashrc
@@ -26,7 +26,7 @@ if [[ ${CATEGORY}/${PN} == sys-devel/gcc && ${EBUILD_PHASE}
== configure ]]; the
EXTRA_ECONF="${EXTRA_ECONF} --with-sysroot=${EPREFIX}"
ebegin "remove --sysroot call on ld for native toolchain"
- sed -i 's/--sysroot=%R//' gcc/gcc.c
+ sed -i 's/--sysroot=%R//' gcc/gcc.c*
eend $?
elif [[ ${CATEGORY}/${PN} == sys-devel/clang && ${EBUILD_PHASE} == configure
]]; then
ebegin "Use ${EPREFIX} as default sysroot"