diff options
| author | Glenn Morris | 2011-05-24 16:09:08 -0400 |
|---|---|---|
| committer | Glenn Morris | 2011-05-24 16:09:08 -0400 |
| commit | a22d9d2c2a51fd6ed6ffd2d19c30fa4e93352a08 (patch) | |
| tree | 3ce1630c7c09425eb63b6b73ad9959ed54154403 | |
| parent | bdd556a2b38dffdd7b9867eec8113d9ba8e66ed9 (diff) | |
| download | emacs-a22d9d2c2a51fd6ed6ffd2d19c30fa4e93352a08.tar.gz emacs-a22d9d2c2a51fd6ed6ffd2d19c30fa4e93352a08.zip | |
* Makefile.in (check): Just give a message if no test/ directory.
| -rw-r--r-- | ChangeLog | 2 | ||||
| -rw-r--r-- | Makefile.in | 8 |
2 files changed, 7 insertions, 3 deletions
| @@ -1,5 +1,7 @@ | |||
| 1 | 2011-05-24 Glenn Morris <rgm@gnu.org> | 1 | 2011-05-24 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * Makefile.in (check): Just give a message if no test/ directory. | ||
| 4 | |||
| 3 | * configure.in: Avoid using variables inside AC_CONFIG_FILES. | 5 | * configure.in: Avoid using variables inside AC_CONFIG_FILES. |
| 4 | 6 | ||
| 5 | * configure.in (OPT_MAKEFILES_IN): Remove. | 7 | * configure.in (OPT_MAKEFILES_IN): Remove. |
diff --git a/Makefile.in b/Makefile.in index 0c3eabcf3b3..529a3b254c2 100644 --- a/Makefile.in +++ b/Makefile.in | |||
| @@ -859,9 +859,11 @@ TAGS tags: lib lib-src src | |||
| 859 | 859 | ||
| 860 | check: | 860 | check: |
| 861 | @if test ! -d test/automated; then \ | 861 | @if test ! -d test/automated; then \ |
| 862 | echo "You do not seem to have the test/ directory."; exit 1; \ | 862 | echo "You do not seem to have the test/ directory."; \ |
| 863 | else true; fi | 863 | echo "Maybe you are using a release tarfile, rather than a repository checkout."; \ |
| 864 | cd test/automated && $(MAKE) $(MFLAGS) check | 864 | else \ |
| 865 | cd test/automated && $(MAKE) $(MFLAGS) check; \ | ||
| 866 | fi | ||
| 865 | 867 | ||
| 866 | dist: | 868 | dist: |
| 867 | cd ${srcdir}; ./make-dist | 869 | cd ${srcdir}; ./make-dist |