diff options
author | Chris Wright <chrisw@osdl.org> | 2005-07-11 14:03:09 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-11 14:20:10 -0700 |
commit | b1de9de2b93510affbbac2a4ffa47208b3beda7a (patch) | |
tree | a73798ee1ef16427fa589b69d7eebda978857760 /Makefile | |
parent | [PATCH] git-clone-script local optimization tweaks (diff) | |
download | tgif-b1de9de2b93510affbbac2a4ffa47208b3beda7a.tar.xz |
[PATCH] Bootstrap "make dist"
Use git-tar-tree directly from git source during make dist. This
handles bootstrap issue with git not being installed.
Signed-off-by: Chris Wright <chrisw@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -175,8 +175,8 @@ git.spec: git.spec.in sed -e 's/@@VERSION@@/$(GIT_VERSION)/g' < $< > $@ GIT_TARNAME=git-$(GIT_VERSION) -dist: git.spec - git-tar-tree HEAD $(GIT_TARNAME) > $(GIT_TARNAME).tar +dist: git.spec git-tar-tree + ./git-tar-tree HEAD $(GIT_TARNAME) > $(GIT_TARNAME).tar @mkdir -p $(GIT_TARNAME) @cp git.spec $(GIT_TARNAME) tar rf $(GIT_TARNAME).tar $(GIT_TARNAME)/git.spec |