From 953bf67fbea6298cb68b7610fdc09c3fcdf8aeec Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Wed, 7 Dec 2016 19:43:36 -0500 Subject: [PATCH] Improve previous make-dist change * make-dist: Let make check the info files more thoroughly. --- make-dist | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/make-dist b/make-dist index 6182b4931a1..31fa53a6f4d 100755 --- a/make-dist +++ b/make-dist @@ -281,6 +281,13 @@ if [ $check = yes ]; then echo "${bogosities}" 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 fi -- 2.39.5