Fix equality test in sourcechanges.pl

This commit is contained in:
David Brown 2016-07-08 23:37:59 +01:00
parent 92e2c51806
commit 89e2616c5b

View file

@ -25,7 +25,7 @@ for f in $1/*; do
rm -f $fn.old $fn.new $fn.diff rm -f $fn.old $fn.new $fn.diff
done done
echo "" echo ""
if [ $changes == "0" ]; then if [ "$changes" = "0" ]; then
echo "--- Generated c source files match bootstrap ---" echo "--- Generated c source files match bootstrap ---"
else else
echo "--- Generated c source files differ from bootstrap ---" echo "--- Generated c source files differ from bootstrap ---"