From 631ba9b6fe498fbc1e2a9c5f2955b4fa7a174a8c Mon Sep 17 00:00:00 2001 From: Panu Matilainen Date: Tue, 26 Jan 2010 17:27:54 +0200 Subject: [PATCH] Use $(NAME) instead of hardwired name everywhere in makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 23c7685..f212d9a 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ tag-archive: git tag -a $(CVSTAG) create-archive: - git archive --format=tar --prefix=redhat-rpm-config-$(VERSION)/ HEAD | bzip2 -9v > redhat-rpm-config-$(VERSION).tar.bz2 + git archive --format=tar --prefix=$(NAME)-$(VERSION)/ HEAD | bzip2 -9v > $(NAME)-$(VERSION).tar.bz2 @echo "The final archive is in $(NAME)-$(VERSION).tar.bz2" archive: tag-archive create-archive