Use find -exec instead of xargs

SVN-Revision: 6837
This commit is contained in:
Florian Fainelli
2007-04-02 16:09:15 +00:00
parent 423af6adca
commit 6cd84c6838
6 changed files with 12 additions and 12 deletions

View File

@ -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: ;