summaryrefslogtreecommitdiffstats
path: root/scripts
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 /scripts
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 'scripts')
-rwxr-xr-xscripts/feeds.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/feeds.sh b/scripts/feeds.sh
index d2dfe9da9..9fc3343a1 100755
--- a/scripts/feeds.sh
+++ b/scripts/feeds.sh
@@ -22,7 +22,7 @@ cd $TOPDIR
# Some functions we might call several times a run
delete_symlinks() {
- find $1 -type l -exec rm -f {} \;
+ find $1 -type l -exec rm -f {} +
}
setup_symlinks() {