Skip to content

Commit f58494b

Browse files
matledgitster
authored andcommitted
make dist: include configure script in tarball
Signed-off-by: Matthias Lederhofer <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 1066c2c commit f58494b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1029,15 +1029,16 @@ git.spec: git.spec.in
10291029
mv $@+ $@
10301030

10311031
GIT_TARNAME=git-$(GIT_VERSION)
1032-
dist: git.spec git-archive
1032+
dist: git.spec git-archive configure
10331033
./git-archive --format=tar \
10341034
--prefix=$(GIT_TARNAME)/ HEAD^{tree} > $(GIT_TARNAME).tar
10351035
@mkdir -p $(GIT_TARNAME)
1036-
@cp git.spec $(GIT_TARNAME)
1036+
@cp git.spec configure $(GIT_TARNAME)
10371037
@echo $(GIT_VERSION) > $(GIT_TARNAME)/version
10381038
@$(MAKE) -C git-gui TARDIR=../$(GIT_TARNAME)/git-gui dist-version
10391039
$(TAR) rf $(GIT_TARNAME).tar \
10401040
$(GIT_TARNAME)/git.spec \
1041+
$(GIT_TARNAME)/configure \
10411042
$(GIT_TARNAME)/version \
10421043
$(GIT_TARNAME)/git-gui/version
10431044
@rm -rf $(GIT_TARNAME)

0 commit comments

Comments
 (0)