diff options
author | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-04-02 16:09:15 +0000 |
---|---|---|
committer | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-04-02 16:09:15 +0000 |
commit | e3bbc7fac112af7fa514495078a9f5357095be8d (patch) | |
tree | 57e890075610ad4408a6fa4b478be0f1eb678e2a /Makefile | |
parent | 259444b050d043dcb7783e1d2cc6626894937923 (diff) |
Use find -exec instead of xargs
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6837 3c298f89-4303-0410-b956-a3cf2f4a3e73
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: ; |