aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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