summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authormbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-04-03 11:56:08 +0000
committermbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-04-03 11:56:08 +0000
commita7b8d6784eb68e82dfd13a37b0f12e80216065a1 (patch)
treea163818608f061265fb7998475f8fb1832bcbeaf /Makefile
parentd4aeb1b5c81c3adfa2db01e9a6eebf9ec5b6d35b (diff)
Using find's -exec to remove directories causes 'not found' errors when find tries to search the removed directory. Hopefully fixed now.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6849 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ab4c4d57b..05c4f450e 100644
--- a/Makefile
+++ b/Makefile
@@ -171,7 +171,7 @@ docclean:
$(MAKE) -C docs/ clean
symlinkclean:
- find package -type l -exec rm -f {} \;
+ find package -type l -exec rm -f {} +
.SILENT: clean dirclean distclean symlinkclean config-clean download world
FORCE: ;