Fix the test for failure in parsecpu's checking of the --with-fpu
argument, and the error message that gets printed when the check
fails.
for gcc/ChangeLog
* config.gcc: Fix ARM --with-fpu checking and error message.
From-SVN: r272496
+2019-06-20 Alexandre Oliva <oliva@adacore.com>
+
+ * config.gcc: Fix ARM --with-fpu checking and error message.
+
2019-06-19 Marek Polacek <polacek@redhat.com>
PR c++/60364 - noreturn after first decl not diagnosed.
# see if --with-fpu matches any of the supported FPUs
if [ x"$with_fpu" != x ] ; then
+ val=$with_fpu
fpu=`awk -f ${srcdir}/config/arm/parsecpu.awk \
- -v cmd="chkfpu $with_fpu" \
+ -v cmd="chkfpu $val" \
${srcdir}/config/arm/arm-cpus.in`
- if [ "$fpu" = "error"]
+ if [ "$fpu" = "error" ]
then
- echo "Unknown target in --with-$which=$val" 1>&2
+ echo "Unknown target in --with-fpu=$val" 1>&2
exit 1
fi
fi