aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/feeds.sh
diff options
context:
space:
mode:
authorMike Baker <mbm@openwrt.org>2007-04-03 11:56:08 +0000
committerMike Baker <mbm@openwrt.org>2007-04-03 11:56:08 +0000
commitd5d59e30ea677bddcf5ce0bfd7f3cd170b12d319 (patch)
treea163818608f061265fb7998475f8fb1832bcbeaf /scripts/feeds.sh
parent2e68ff9a889a98c85dcde08212a53c59435f1c65 (diff)
downloadmaster-187ad058-d5d59e30ea677bddcf5ce0bfd7f3cd170b12d319.tar.gz
master-187ad058-d5d59e30ea677bddcf5ce0bfd7f3cd170b12d319.tar.bz2
master-187ad058-d5d59e30ea677bddcf5ce0bfd7f3cd170b12d319.zip
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/feeds.sh')
-rwxr-xr-xscripts/feeds.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/feeds.sh b/scripts/feeds.sh
index d2dfe9da9f..9fc3343a1b 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() {