mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-30 04:10:54 -08:00
* Makefile.in (check): Just give a message if no test/ directory.
This commit is contained in:
parent
bdd556a2b3
commit
a22d9d2c2a
2 changed files with 7 additions and 3 deletions
|
|
@ -1,5 +1,7 @@
|
|||
2011-05-24 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* 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.
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue