]> git.eshelyaron.com Git - emacs.git/commitdiff
Improve previous make-dist change
authorGlenn Morris <rgm@gnu.org>
Thu, 8 Dec 2016 00:43:36 +0000 (19:43 -0500)
committerGlenn Morris <rgm@gnu.org>
Thu, 8 Dec 2016 00:43:36 +0000 (19:43 -0500)
* make-dist: Let make check the info files more thoroughly.

make-dist

index 6182b4931a142827c0937cd56a32cec9f8114722..31fa53a6f4d5646e63e267b2a98a2d83c5d8ce9c 100755 (executable)
--- 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