From 217b60a2726fb2a71fdb96274d374d9b903ae782 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 17 Feb 2010 15:07:19 -0800 Subject: [PATCH] sed -i 's/git-/git /g' Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c9e6e51f02..32b647a022 100644 --- a/Makefile +++ b/Makefile @@ -59,11 +59,11 @@ distclean: docclean check: @tools/waf-light check -VERSION=$(shell git-describe) +VERSION=$(shell git describe) TARNAME=node-$(VERSION) dist: doc/node.1 doc/api.html - git-archive --prefix=$(TARNAME)/ HEAD > $(TARNAME).tar + git archive --prefix=$(TARNAME)/ HEAD > $(TARNAME).tar mkdir -p $(TARNAME)/doc cp doc/node.1 $(TARNAME)/doc/node.1 cp doc/api.html $(TARNAME)/doc/api.html