Skip to content

Commit

Permalink
scripts/bootstrap-prefix: fix profile for armv7 targets
Browse files Browse the repository at this point in the history
Thanks fosslinux

Closes: https://bugs.gentoo.org/920437
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
  • Loading branch information
grobian committed Dec 25, 2023
1 parent 5136685 commit b313adc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/bootstrap-prefix.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit b313adc

Please sign in to comment.