Use $targetos instead of a second call to uname

This commit is contained in:
Christian Jullien 2021-01-17 11:45:23 +01:00
parent a2987fef19
commit debe8d013d

2
configure vendored
View File

@ -361,7 +361,7 @@ if test -z "$cross_prefix" ; then
confvars="$confvars arm_eabihf arm_vfp"
elif test "${triplet%eabi}" != "$triplet" ; then
confvars="$confvars arm_eabi"
elif test "`uname`" = "NetBSD"; then
elif test "$targetos" = "NetBSD"; then
confvars="$confvars arm_eabihf arm_vfp"
fi
if grep -s -q "^Features.* \(vfp\|iwmmxt\) " /proc/cpuinfo ; then