Fix aarch64 build breakage caused by ed17d3008

This commit is contained in:
Justine Tunney 2023-10-31 18:17:19 -07:00
parent a09f62141d
commit f86ffa1a25
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
2 changed files with 4 additions and 1 deletions

View file

@ -227,7 +227,8 @@ for x; do
continue
fi
if [ x"$x" = x"-" ] || # is an argument
[ x"$x" = x"${x#-*}" ]; then # !startswith(x, "-")
[ x"$x" = x"${x#-*}" ] || # !startswith(x, "-")
[ x"$x" = x"-Wl,--version" ]; then
GOT_SOME=1
elif [ x"$x" = x"-static-libstdc++" ]; then
continue