From: Glenn L McGrath Date: Fri, 29 Aug 2003 12:20:31 +0000 (-0000) Subject: * Since busybox binary is unnecessary, deleted it from prerequisites. X-Git-Tag: 1_00_pre3~50 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=87470def246da9ef4298f253dc23899b3c737bfe;p=oweals%2Fbusybox.git * Since busybox binary is unnecessary, deleted it from prerequisites. * Changed so that not only links but /bin/busybox might be deleted. * When double quoted PREFIX is defined by `.config' is used, `make uninstall' does not work correctly. When default PREFIX `pwd`/_install defined by Rules.mak is used, similarly it does not work correctly. Changed $$PREFIX into $(PREFIX) in order to fix this. Patch by Hideki IWAMOTO --- diff --git a/Makefile b/Makefile index 3d6bcce83..bfa76010b 100644 --- a/Makefile +++ b/Makefile @@ -54,8 +54,9 @@ busybox.links: applets/busybox.mkll include/config.h install: applets/install.sh busybox busybox.links $(SHELL) $< $(PREFIX) -uninstall: busybox busybox.links - for i in `cat busybox.links` ; do rm -f $$PREFIX$$i; done +uninstall: busybox.links + rm -f $(PREFIX)/bin/busybox + for i in `cat busybox.links` ; do rm -f $(PREFIX)$$i; done install-hardlinks: applets/install.sh busybox busybox.links $(SHELL) $< $(PREFIX) --hardlinks