diff options
author | Jim Meyering <meyering@redhat.com> | 2008-06-08 12:33:28 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2008-06-08 12:33:28 +0200 |
commit | 252d6d01c991289a8966ee1cb8b89ba338667967 (patch) | |
tree | 806412d9f39fdac3c9b6cecb3e4936cb52d150b9 | |
parent | 6eec737ade63bd48e0cccd66c021dd5523100f06 (diff) | |
download | coreutils-252d6d01c991289a8966ee1cb8b89ba338667967.tar.xz |
maint.mk: my-distcheck runs $(MAKE) syntax-check once again
* maint.mk (my-distcheck): Run $(MAKE) syntax-check once again.
Run "$(MAKE) check" _after_ the less expensive syntax-check.
-rw-r--r-- | maint.mk | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -705,7 +705,9 @@ endef # the build srcdir, these always-failing programs will run. # Otherwise, it is too easy to test the wrong programs. # Note that "false" itself is a symlink to true, so it too will malfunction. -my-distcheck: $(DIST_ARCHIVES) $(local-check) check +my-distcheck: $(DIST_ARCHIVES) $(local-check) + $(MAKE) syntax-check + $(MAKE) check -rm -rf $(t) mkdir -p $(t) GZIP=$(GZIP_ENV) $(AMTAR) -C $(t) -zxf $(distdir).tar.gz |