aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2003-11-17 10:26:43 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2003-11-17 10:26:43 +0000
commit0874a613d2b56901ec73965fd0eff7d650744801 (patch)
tree17756cea69498f430fd7a817804b8206bad7fc50 /Makefile
parent8dc8cb133c482441f45aebb63376702d152b52ba (diff)
downloadbusybox-0874a613d2b56901ec73965fd0eff7d650744801.tar.gz
Use the PROG variable instead of 'busybox' in the release target
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index d38c2c35b..fc8ea56f7 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 .