diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-05-23 16:14:06 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-05-23 16:14:06 +0200 |
commit | 4f63c7931c42351e38619842681026ff2c20c7ee (patch) | |
tree | 0e0348093bb3d2d33434b4c6f0089b39e85b072d /Makefile | |
parent | 9e07219c7814972893d1f3bb67b43108fe83212a (diff) | |
download | busybox-4f63c7931c42351e38619842681026ff2c20c7ee.tar.gz |
fix unescaped $ in makefile
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 # |