[BusyBox-cvs] busybox Makefile,1.288,1.289

Glenn McGrath bug1 at busybox.net
Mon Nov 17 10:26:47 UTC 2003


Update of /var/cvs/busybox
In directory winder:/tmp/cvs-serv28775

Modified Files:
	Makefile 
Log Message:
Use the PROG variable instead of 'busybox' in the release target


Index: Makefile
===================================================================
RCS file: /var/cvs/busybox/Makefile,v
retrieving revision 1.288
retrieving revision 1.289
diff -u -d -r1.288 -r1.289
--- Makefile	24 Sep 2003 15:48:29 -0000	1.288
+++ Makefile	17 Nov 2003 10:26:43 -0000	1.289
@@ -232,20 +232,20 @@
 
 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 .




More information about the busybox-cvs mailing list