From: Glenn L McGrath Date: Mon, 17 Nov 2003 10:26:43 +0000 (-0000) Subject: Use the PROG variable instead of 'busybox' in the release target X-Git-Tag: 1_00_pre4~53 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0874a613d2b56901ec73965fd0eff7d650744801;p=platform%2Fupstream%2Fbusybox.git Use the PROG variable instead of 'busybox' in the release target --- diff --git a/Makefile b/Makefile index d38c2c3..fc8ea56 100644 --- a/Makefile +++ b/Makefile @@ -232,20 +232,20 @@ distclean: clean release: distclean #doc cd ..; \ - rm -rf busybox-$(VERSION); \ - cp -a busybox busybox-$(VERSION); \ + rm -rf $(PROG)-$(VERSION); \ + cp -a busybox $(PROG)-$(VERSION); \ \ - find busybox-$(VERSION)/ -type d \ + find $(PROG)-$(VERSION)/ -type d \ -name CVS \ -print \ -exec rm -rf {} \; ; \ \ - find busybox-$(VERSION)/ -type f \ + find $(PROG)-$(VERSION)/ -type f \ -name .\#* \ -print \ -exec rm -f {} \; ; \ \ - tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/; + tar -cvzf $(PROG)-$(VERSION).tar.gz $(PROG)-$(VERSION)/; tags: ctags -R .