aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-11-17 10:26:43 +0000
committerbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-11-17 10:26:43 +0000
commita892a3f95d54b4d1854b628b68bc79583ad36ec8 (patch)
tree17756cea69498f430fd7a817804b8206bad7fc50 /Makefile
parent22fd89f8278dee327c9f4fa4a60e9bb52d9685cf (diff)
downloadbusybox-w32-a892a3f95d54b4d1854b628b68bc79583ad36ec8.tar.gz
busybox-w32-a892a3f95d54b4d1854b628b68bc79583ad36ec8.tar.bz2
busybox-w32-a892a3f95d54b4d1854b628b68bc79583ad36ec8.zip
Use the PROG variable instead of 'busybox' in the release target
git-svn-id: svn://busybox.net/trunk/busybox@7928 69ca8d6d-28ef-0310-b511-8ec308f3f277
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
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 .