From 7e572d42bfbf3cb5c6bde01ed6ee15dec3cee75a Mon Sep 17 00:00:00 2001 From: JF Ding Date: Fri, 16 Sep 2011 11:38:10 +0900 Subject: [PATCH] Makefile: make dist to remember the git commit id --- Makefile | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 719293c..e3e5292 100644 --- a/Makefile +++ b/Makefile @@ -17,13 +17,17 @@ endif all: $(PYTHON) setup.py build -dist-bz2: - git archive --format=tar --prefix=$(PKGNAME)-$(TAGVER)/ $(TAG) | \ - bzip2 > $(PKGNAME)-$(TAGVER).tar.bz2 +dist-common: + git archive --format=tar --prefix=$(PKGNAME)-$(TAGVER)/ $(TAG) | tar xpf - + git show $(TAG) --oneline | head -1 > $(PKGNAME)-$(TAGVER)/commit-id -dist-gz: - git archive --format=tar --prefix=$(PKGNAME)-$(TAGVER)/ $(TAG) | \ - gzip > $(PKGNAME)-$(TAGVER).tar.gz +dist-bz2: dist-common + tar jcpf $(PKGNAME)-$(TAGVER).tar.bz2 $(PKGNAME)-$(TAGVER) + rm -rf $(PKGNAME)-$(TAGVER) + +dist-gz: dist-common + tar zcpf $(PKGNAME)-$(TAGVER).tar.gz $(PKGNAME)-$(TAGVER) + rm -rf $(PKGNAME)-$(TAGVER) install: all $(PYTHON) setup.py install --prefix=$(DESTDIR)/$(PREFIX) -- 2.7.4