projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
953bf67
)
Further improve make-dist checking
author
Glenn Morris
<rgm@gnu.org>
Thu, 8 Dec 2016 00:45:48 +0000
(19:45 -0500)
committer
Glenn Morris
<rgm@gnu.org>
Thu, 8 Dec 2016 00:45:48 +0000
(19:45 -0500)
* make-dist: Print status messages when checking.
make-dist
patch
|
blob
|
history
diff --git
a/make-dist
b/make-dist
index 31fa53a6f4d5646e63e267b2a98a2d83c5d8ce9c..e454e924480ec38e3bbc6ab9636629ceef07e499 100755
(executable)
--- a/
make-dist
+++ b/
make-dist
@@
-204,6
+204,9
@@
them, and try again." >&2
fi
if [ $check = yes ]; then
+
+ echo "Sanity checking (use --no-check to disable this)..."
+
error=no
ls -1 lisp/[a-zA-Z]*.el lisp/[a-z]*/[a-zA-Z0-9]*.el \
@@
-288,7
+291,11
@@
if [ $check = yes ]; then
make --question info || error=yes
fi
- [ $error = yes ] && exit 1
+ if [ $error = yes ]; then
+ echo "Failed checks" >&2
+ exit 1
+ fi
+
fi
if [ $update = yes ]; then