aboutsummaryrefslogtreecommitdiff
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
parent8dc8cb133c482441f45aebb63376702d152b52ba (diff)
downloadbusybox-w32-0874a613d2b56901ec73965fd0eff7d650744801.tar.gz
busybox-w32-0874a613d2b56901ec73965fd0eff7d650744801.tar.bz2
busybox-w32-0874a613d2b56901ec73965fd0eff7d650744801.zip
Use the PROG variable instead of 'busybox' in the release target
-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
232 232
233release: distclean #doc 233release: distclean #doc
234 cd ..; \ 234 cd ..; \
235 rm -rf busybox-$(VERSION); \ 235 rm -rf $(PROG)-$(VERSION); \
236 cp -a busybox busybox-$(VERSION); \ 236 cp -a busybox $(PROG)-$(VERSION); \
237 \ 237 \
238 find busybox-$(VERSION)/ -type d \ 238 find $(PROG)-$(VERSION)/ -type d \
239 -name CVS \ 239 -name CVS \
240 -print \ 240 -print \
241 -exec rm -rf {} \; ; \ 241 -exec rm -rf {} \; ; \
242 \ 242 \
243 find busybox-$(VERSION)/ -type f \ 243 find $(PROG)-$(VERSION)/ -type f \
244 -name .\#* \ 244 -name .\#* \
245 -print \ 245 -print \
246 -exec rm -f {} \; ; \ 246 -exec rm -f {} \; ; \
247 \ 247 \
248 tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/; 248 tar -cvzf $(PROG)-$(VERSION).tar.gz $(PROG)-$(VERSION)/;
249 249
250tags: 250tags:
251 ctags -R . 251 ctags -R .