[git commit master] fix unescaped $ in makefile

Denys Vlasenko vda.linux at googlemail.com
Sun May 23 14:14:06 UTC 2010


commit: http://git.busybox.net/busybox/commit/?id=4f63c7931c42351e38619842681026ff2c20c7ee
branch: http://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 Makefile |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile
index 14f5cd1..c231092 100644
--- a/Makefile
+++ b/Makefile
@@ -1001,8 +1001,8 @@ $(mrproper-dirs):
 mrproper: clean archmrproper $(mrproper-dirs)
 	$(call cmd,rmdirs)
 	$(call cmd,rmfiles)
-	@find -name Config.src | sed 's/.src$/.in/' | xargs -r rm -f
-	@find -name Kbuild.src | sed 's/.src$//' | xargs -r rm -f
+	@find -name Config.src | sed 's/.src$$/.in/' | xargs -r rm -f
+	@find -name Kbuild.src | sed 's/.src$$//' | xargs -r rm -f
 
 # distclean
 #
-- 
1.6.3.3



More information about the busybox-cvs mailing list