aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2007-04-12 19:18:38 +0000
committerFelix Fietkau <nbd@openwrt.org>2007-04-12 19:18:38 +0000
commit1cabba028e019be3a33c936c2fbe4bdf6a19fb53 (patch)
tree76c846e43279bd22c30a82c78efcc81ca125e6a2 /scripts
parent07bdd5fe16bc0ebca83a00a8628be925c2956540 (diff)
downloadmaster-187ad058-1cabba028e019be3a33c936c2fbe4bdf6a19fb53.tar.gz
master-187ad058-1cabba028e019be3a33c936c2fbe4bdf6a19fb53.tar.bz2
master-187ad058-1cabba028e019be3a33c936c2fbe4bdf6a19fb53.zip
revert find | xargs => find | exec changes - this is completely unnecessary and introduces additional dependencies that we do not need
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6942 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 9fc3343a1b..a6d4ef9d71 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 | xargs -r rm -f
}
setup_symlinks() {