Skip to content

Commit

Permalink
Only run "git ls-files" when doing "make check"
Browse files Browse the repository at this point in the history
  • Loading branch information
edolstra committed Feb 1, 2014
1 parent 2a97f7b commit 6dca720
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/manual/local.mk
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ $(man-pages): $(d)/manual.xmli $(d)/manual.is-valid

clean-files += $(d)/*.1 $(d)/*.5 $(d)/*.8

dist-files += $(d)/*.1 $(d)/*.5 $(d)/*.8
dist-files += $(man-pages)


# Generate the HTML manual.
Expand Down
4 changes: 3 additions & 1 deletion local.mk
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
dist-files += $(shell git ls-files) $(shell git ls-files)
ifeq ($(MAKECMDGOALS), dist)
dist-files += $(shell git ls-files) $(shell git ls-files)
endif

dist-files += configure config.h.in

Expand Down

0 comments on commit 6dca720

Please sign in to comment.