summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2008-06-08 12:33:28 +0200
committerJim Meyering <meyering@redhat.com>2008-06-08 12:33:28 +0200
commit252d6d01c991289a8966ee1cb8b89ba338667967 (patch)
tree806412d9f39fdac3c9b6cecb3e4936cb52d150b9
parent6eec737ade63bd48e0cccd66c021dd5523100f06 (diff)
downloadcoreutils-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.mk4
1 files changed, 3 insertions, 1 deletions
diff --git a/maint.mk b/maint.mk
index 88448293c..9363baf73 100644
--- a/maint.mk
+++ b/maint.mk
@@ -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