aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen van Meeuwen (Ergo Project) <jeroen.van.meeuwen@ergo-project.org>2010-07-20 19:12:45 +0200
committerGuido Günther <agx@sigxcpu.org>2010-07-20 20:40:35 +0200
commit5cdf770ad96c66fba42d913db247181f63084341 (patch)
treebc468b04bce02d27fe41453401167591180a4cea
parent6f22440c3de32c1169779343c4b1900d1931dd75 (diff)
Correct git-archive command for Fedora/EL git implementations
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 3bb7a73..a15dc67 100644
--- a/Makefile
+++ b/Makefile
@@ -36,6 +36,6 @@ clean:
rm -f *.py *.pyc $(DETECT)
dist: clean check
- git-archive --format=tar --prefix=$(PACKAGE)-$(VERSION)/ HEAD | gzip -c > ../$(PACKAGE)-$(VERSION).tar.gz
+ git archive --format=tar --prefix=$(PACKAGE)-$(VERSION)/ HEAD | gzip -c > ../$(PACKAGE)-$(VERSION).tar.gz
.PHONY: clean check dist install build