From: Glenn Morris Date: Tue, 24 May 2011 20:09:08 +0000 (-0400) Subject: * Makefile.in (check): Just give a message if no test/ directory. X-Git-Tag: emacs-pretest-24.0.90~104^2~618^2~169 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a22d9d2c2a51fd6ed6ffd2d19c30fa4e93352a08;p=emacs.git * Makefile.in (check): Just give a message if no test/ directory. --- diff --git a/ChangeLog b/ChangeLog index 86a685d988c..9486bbdca3f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2011-05-24 Glenn Morris + * Makefile.in (check): Just give a message if no test/ directory. + * configure.in: Avoid using variables inside AC_CONFIG_FILES. * 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 check: @if test ! -d test/automated; then \ - echo "You do not seem to have the test/ directory."; exit 1; \ - else true; fi - cd test/automated && $(MAKE) $(MFLAGS) check + echo "You do not seem to have the test/ directory."; \ + echo "Maybe you are using a release tarfile, rather than a repository checkout."; \ + else \ + cd test/automated && $(MAKE) $(MFLAGS) check; \ + fi dist: cd ${srcdir}; ./make-dist