Skip to content

Commit afaed81

Browse files
committed
ensure that commit_hash.h is included in the source tarball
1 parent f014af3 commit afaed81

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

Makefile.am

+9-4
Original file line numberDiff line numberDiff line change
@@ -680,16 +680,21 @@ BUILT_SOURCES = commit_hash.h
680680

681681
commit_hash.h: FORCE
682682
@if test -e $(srcdir)/.git/logs/HEAD; then \
683-
if [ ! -f $@ ] || [ $(srcdir)/.git/logs/HEAD -nt $@ ]; then \
684-
echo "Regenerating commit_hash.h..."; \
683+
if [ ! -f $(srcdir)/commit_hash.h ] || [ $(srcdir)/.git/logs/HEAD -nt $(srcdir)/commit_hash.h ]; then \
684+
echo "Regenerating $(srcdir)/commit_hash.h..."; \
685685
$(SHELL) $(srcdir)/generate_commit_hash.sh; \
686686
else \
687-
echo "commit_hash.h is up-to-date."; \
687+
echo "$(srcdir)/commit_hash.h is up-to-date."; \
688688
fi \
689689
else \
690-
echo "Using existing commit_hash.h"; \
690+
echo "Using existing $(srcdir)/commit_hash.h"; \
691691
fi
692692

693+
# Ensure that commit_hash.h is included in the source tarball.
694+
dist-hook:
695+
test -f $(srcdir)/commit_hash.h || $(MAKE) commit_hash.h
696+
test -f $(distdir)/commit_hash.h || cp $(srcdir)/commit_hash.h $(distdir)/
697+
693698
FORCE:
694699

695700
.PHONY: FORCE

0 commit comments

Comments
 (0)