Improve previous make-dist change

* make-dist: Let make check the info files more thoroughly.
This commit is contained in:
Glenn Morris 2016-12-07 19:43:36 -05:00
parent 129645a7a7
commit 953bf67fbe

View file

@ -281,6 +281,13 @@ if [ $check = yes ]; then
echo "${bogosities}" echo "${bogosities}"
fi fi
## This exits with non-zero status if any .info files need
## rebuilding.
if [ -e Makefile ]; then
echo "Checking to see if info files are up-to-date..."
make --question info || error=yes
fi
[ $error = yes ] && exit 1 [ $error = yes ] && exit 1
fi fi