diff options
author | Florian Fainelli <florian@openwrt.org> | 2007-04-02 16:09:15 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2007-04-02 16:09:15 +0000 |
commit | 7a5a2cec7a9bd2fef9aa3b7e1e78cf6714855d57 (patch) | |
tree | 57e890075610ad4408a6fa4b478be0f1eb678e2a /scripts | |
parent | ac73de1e9395e3f8858693f368eff16fdd53f307 (diff) | |
download | upstream-7a5a2cec7a9bd2fef9aa3b7e1e78cf6714855d57.tar.gz upstream-7a5a2cec7a9bd2fef9aa3b7e1e78cf6714855d57.tar.bz2 upstream-7a5a2cec7a9bd2fef9aa3b7e1e78cf6714855d57.zip |
Use find -exec instead of xargs
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6837 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/feeds.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/feeds.sh b/scripts/feeds.sh index 351c87c43d..d2dfe9da9f 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 | xargs rm -f + find $1 -type l -exec rm -f {} \; } setup_symlinks() { |