summaryrefslogtreecommitdiffstats
path: root/scripts
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
commit0359c6222e7253eed3c7a0e4b565c1d0608720e0 (patch)
tree2d6ca027d11f1e885c98d0b7ec157370d4ef7bad /scripts
parent3ce8de018e45b1e92243a50a6bde51a56b994381 (diff)
downloadmaster-31e0f0ae-0359c6222e7253eed3c7a0e4b565c1d0608720e0.tar.gz
master-31e0f0ae-0359c6222e7253eed3c7a0e4b565c1d0608720e0.tar.bz2
master-31e0f0ae-0359c6222e7253eed3c7a0e4b565c1d0608720e0.zip
Using find's -exec to remove directories causes 'not found' errors when find tries to search the removed directory. Hopefully fixed now.
SVN-Revision: 6849
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 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() {