diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-03-29 07:35:26 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-03-29 07:35:26 +0000 |
commit | 55c5d10ca9c98ef8424d939aa950a04d30cbbe24 (patch) | |
tree | e095aa26393fd6c2edf58a4160c487264f2e7f76 /tools/ipkg-utils/patches/160-find.patch | |
parent | 61dd3c80134845c4aabbe1737d30418d67d0a2de (diff) | |
download | upstream-55c5d10ca9c98ef8424d939aa950a04d30cbbe24.tar.gz upstream-55c5d10ca9c98ef8424d939aa950a04d30cbbe24.tar.bz2 upstream-55c5d10ca9c98ef8424d939aa950a04d30cbbe24.zip |
tools: replace ipkg-utils with a reduced ipkg-build variant in scripts/
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 45129
Diffstat (limited to 'tools/ipkg-utils/patches/160-find.patch')
-rw-r--r-- | tools/ipkg-utils/patches/160-find.patch | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/tools/ipkg-utils/patches/160-find.patch b/tools/ipkg-utils/patches/160-find.patch deleted file mode 100644 index 45ef3c6517..0000000000 --- a/tools/ipkg-utils/patches/160-find.patch +++ /dev/null @@ -1,39 +0,0 @@ ---- a/ipkg-build -+++ b/ipkg-build -@@ -10,7 +10,8 @@ - set -e - - version=1.0 -- -+FIND="$(which find)" -+FIND="${FIND:-$(which gfind)}" - TAR="${TAR:-$(which tar)}" - - ipkg_extract_value() { -@@ -49,7 +50,7 @@ pkg_appears_sane() { - - PKG_ERROR=0 - -- cvs_dirs=`find . -name 'CVS'` -+ cvs_dirs=`$FIND . -name 'CVS'` - if [ -n "$cvs_dirs" ]; then - if [ "$noclean" = "1" ]; then - echo "*** Warning: The following CVS directories where found. -@@ -62,7 +63,7 @@ You probably want to remove them: " >&2 - fi - fi - -- tilde_files=`find . -name '*~'` -+ tilde_files=`$FIND . -name '*~'` - if [ -n "$tilde_files" ]; then - if [ "$noclean" = "1" ]; then - echo "*** Warning: The following files have names ending in '~'. -@@ -75,7 +76,7 @@ You probably want to remove them: " >&2 - fi - fi - -- large_uid_files=`find . -uid +99 || true` -+ large_uid_files=`$FIND . -uid +99 || true` - - if [ "$ogargs" = "" ] && [ -n "$large_uid_files" ]; then - echo "*** Warning: The following files have a UID greater than 99. |