From 4701177a755f1ae9df9f328f9955e4a555ecfb42 Mon Sep 17 00:00:00 2001 From: Mark Borgerding <(none)> Date: Fri, 1 Feb 2019 07:48:36 -0500 Subject: [PATCH] switched "make tarball" from hg to git command --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 4c0c38a..1ad099a 100644 --- a/Makefile +++ b/Makefile @@ -31,8 +31,8 @@ testall: echo "all tests passed" tarball: clean - hg archive -r v$(KFVER) -t tgz kiss_fft$(KFVER).tar.gz - hg archive -r v$(KFVER) -t zip kiss_fft$(KFVER).zip + git archive --prefix=kissfft/ -o kissfft$(KFVER).tar.gz v$(KFVER) + git archive --prefix=kissfft/ -o kissfft$(KFVER).zip v$(KFVER) clean: cd test && make clean