diff options
| author | Glenn Morris | 2016-12-07 19:45:48 -0500 |
|---|---|---|
| committer | Glenn Morris | 2016-12-07 19:45:48 -0500 |
| commit | 5531e75385ca3d02287f4df7788e38090f70b6b7 (patch) | |
| tree | cd91d6e990c85b3ab1103d9312db9ce6f794711c /make-dist | |
| parent | 953bf67fbea6298cb68b7610fdc09c3fcdf8aeec (diff) | |
| download | emacs-5531e75385ca3d02287f4df7788e38090f70b6b7.tar.gz emacs-5531e75385ca3d02287f4df7788e38090f70b6b7.zip | |
Further improve make-dist checking
* make-dist: Print status messages when checking.
Diffstat (limited to 'make-dist')
| -rwxr-xr-x | make-dist | 9 |
1 files changed, 8 insertions, 1 deletions
| @@ -204,6 +204,9 @@ them, and try again." >&2 | |||
| 204 | fi | 204 | fi |
| 205 | 205 | ||
| 206 | if [ $check = yes ]; then | 206 | if [ $check = yes ]; then |
| 207 | |||
| 208 | echo "Sanity checking (use --no-check to disable this)..." | ||
| 209 | |||
| 207 | error=no | 210 | error=no |
| 208 | 211 | ||
| 209 | ls -1 lisp/[a-zA-Z]*.el lisp/[a-z]*/[a-zA-Z0-9]*.el \ | 212 | ls -1 lisp/[a-zA-Z]*.el lisp/[a-z]*/[a-zA-Z0-9]*.el \ |
| @@ -288,7 +291,11 @@ if [ $check = yes ]; then | |||
| 288 | make --question info || error=yes | 291 | make --question info || error=yes |
| 289 | fi | 292 | fi |
| 290 | 293 | ||
| 291 | [ $error = yes ] && exit 1 | 294 | if [ $error = yes ]; then |
| 295 | echo "Failed checks" >&2 | ||
| 296 | exit 1 | ||
| 297 | fi | ||
| 298 | |||
| 292 | fi | 299 | fi |
| 293 | 300 | ||
| 294 | if [ $update = yes ]; then | 301 | if [ $update = yes ]; then |