File tree 1 file changed +9
-4
lines changed
1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -680,16 +680,21 @@ BUILT_SOURCES = commit_hash.h
680
680
681
681
commit_hash.h : FORCE
682
682
@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..." ; \
685
685
$(SHELL ) $(srcdir ) /generate_commit_hash.sh; \
686
686
else \
687
- echo " commit_hash.h is up-to-date." ; \
687
+ echo " $( srcdir ) / commit_hash.h is up-to-date." ; \
688
688
fi \
689
689
else \
690
- echo " Using existing commit_hash.h" ; \
690
+ echo " Using existing $( srcdir ) / commit_hash.h" ; \
691
691
fi
692
692
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
+
693
698
FORCE :
694
699
695
700
.PHONY : FORCE
You can’t perform that action at this time.
0 commit comments