aboutsummaryrefslogtreecommitdiffstats
path: root/make-dist
diff options
context:
space:
mode:
authorGlenn Morris2016-12-07 19:43:36 -0500
committerGlenn Morris2016-12-07 19:43:36 -0500
commit953bf67fbea6298cb68b7610fdc09c3fcdf8aeec (patch)
tree20efbc67ff34e46b642a44f1ffdd68f0d6e6cfc0 /make-dist
parent129645a7a7129f2a63c1daf2743c2d901460b9fa (diff)
downloademacs-953bf67fbea6298cb68b7610fdc09c3fcdf8aeec.tar.gz
emacs-953bf67fbea6298cb68b7610fdc09c3fcdf8aeec.zip
Improve previous make-dist change
* make-dist: Let make check the info files more thoroughly.
Diffstat (limited to 'make-dist')
-rwxr-xr-xmake-dist7
1 files changed, 7 insertions, 0 deletions
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
281 echo "${bogosities}" 281 echo "${bogosities}"
282 fi 282 fi
283 283
284 ## This exits with non-zero status if any .info files need
285 ## rebuilding.
286 if [ -e Makefile ]; then
287 echo "Checking to see if info files are up-to-date..."
288 make --question info || error=yes
289 fi
290
284 [ $error = yes ] && exit 1 291 [ $error = yes ] && exit 1
285fi 292fi
286 293