diff options
author | Florian Fainelli <florian@openwrt.org> | 2007-04-02 16:09:15 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2007-04-02 16:09:15 +0000 |
commit | 6cd84c68386d614b4838346b8b16f0431bd07e3e (patch) | |
tree | 658bde36cb97d078f983ececc1bba6953fb84eeb /Makefile | |
parent | 423af6adca85911671066465f68402da4f933622 (diff) | |
download | upstream-6cd84c68386d614b4838346b8b16f0431bd07e3e.tar.gz upstream-6cd84c68386d614b4838346b8b16f0431bd07e3e.tar.bz2 upstream-6cd84c68386d614b4838346b8b16f0431bd07e3e.zip |
Use find -exec instead of xargs
SVN-Revision: 6837
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -171,7 +171,7 @@ docclean: $(MAKE) -C docs/ clean symlinkclean: - find package -type l | xargs rm -f + find package -type l -exec rm -f {} \; .SILENT: clean dirclean distclean symlinkclean config-clean download world FORCE: ; |