emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r104359: * Makefile.in (check): Just


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r104359: * Makefile.in (check): Just give a message if no test/ directory.
Date: Tue, 24 May 2011 16:09:08 -0400
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 104359
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Tue 2011-05-24 16:09:08 -0400
message:
  * Makefile.in (check): Just give a message if no test/ directory.
modified:
  ChangeLog
  Makefile.in
=== modified file 'ChangeLog'
--- a/ChangeLog 2011-05-24 19:12:58 +0000
+++ b/ChangeLog 2011-05-24 20:09:08 +0000
@@ -1,5 +1,7 @@
 2011-05-24  Glenn Morris  <address@hidden>
 
+       * 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.

=== modified file 'Makefile.in'
--- a/Makefile.in       2011-05-24 17:23:15 +0000
+++ b/Makefile.in       2011-05-24 20:09:08 +0000
@@ -859,9 +859,11 @@
 
 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


reply via email to

[Prev in Thread] Current Thread [Next in Thread]