commit: b313adcb844cc7037cc3d19b02ecfcb9c9deb88c Author: Fabian Groffen <grobian <AT> gentoo <DOT> org> AuthorDate: Mon Dec 25 11:10:00 2023 +0000 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org> CommitDate: Mon Dec 25 11:10:00 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=b313adcb
scripts/bootstrap-prefix: fix profile for armv7 targets Thanks fosslinux Closes: https://bugs.gentoo.org/920437 Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org> scripts/bootstrap-prefix.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh index 041acf1b1f..a04cadf483 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -405,8 +405,8 @@ bootstrap_profile() { aarch64-unknown-linux-gnu) profile=${profile_linux/ARCH/arm64} ;; - armv7l-pc-linux-gnu) - profile=${profile_linux/ARCH/arm} + armv7*-pc-linux-gnu) + profile=${profile_linux/ARCH/arm7a} ;; x86_64-pc-solaris2.11) profile="prefix/sunos/solaris/5.11/x64"
