commit db7ffe9b863be5cc0114cf2dfef31208df296d8b parent fad240875a1562d7d667270f490fb3a1816e561a Author: leitner <leitner> Date: Fri, 8 Apr 2005 17:23:34 +0000 fix make tar target Diffstat:
M | Makefile | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile @@ -91,7 +91,7 @@ VERSION=minit-$(shell head -n 1 CHANGES|sed 's/://') CURNAME=$(notdir $(shell pwd)) tar: clean rename - cd .. && tar cvvf $(VERSION).tar.bz2 $(VERSION) --use=bzip2 --exclude CVS + cd ..; tar cvvf $(VERSION).tar.bz2 --use=bzip2 --exclude CVS $(VERSION) rename: if test $(CURNAME) != $(VERSION); then cd .. && mv $(CURNAME) $(VERSION); fi