aboutsummaryrefslogtreecommitdiffstats
path: root/tools/ipkg-utils/patches/130-tar_wildcards.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2015-03-29 07:35:26 +0000
committerFelix Fietkau <nbd@openwrt.org>2015-03-29 07:35:26 +0000
commit55c5d10ca9c98ef8424d939aa950a04d30cbbe24 (patch)
treee095aa26393fd6c2edf58a4160c487264f2e7f76 /tools/ipkg-utils/patches/130-tar_wildcards.patch
parent61dd3c80134845c4aabbe1737d30418d67d0a2de (diff)
downloadupstream-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/130-tar_wildcards.patch')
-rw-r--r--tools/ipkg-utils/patches/130-tar_wildcards.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/tools/ipkg-utils/patches/130-tar_wildcards.patch b/tools/ipkg-utils/patches/130-tar_wildcards.patch
deleted file mode 100644
index ba949c1003..0000000000
--- a/tools/ipkg-utils/patches/130-tar_wildcards.patch
+++ /dev/null
@@ -1,23 +0,0 @@
---- a/ipkg.py
-+++ b/ipkg.py
-@@ -93,9 +93,9 @@ class Package:
- self.filename = os.path.basename(fn)
- ## sys.stderr.write(" extracting control.tar.gz from %s\n"% (fn,))
- if self.isdeb:
-- control = os.popen("ar p "+fn+" control.tar.gz | tar xfzO - '*control'","r")
-+ control = os.popen("ar p "+fn+" control.tar.gz | tar xzO --wildcards -f - '*control'","r")
- else:
-- control = os.popen("tar xfzO "+fn+" '*control.tar.gz' | tar xfzO - '*control'","r")
-+ control = os.popen("tar xzO --wildcards -f "+fn+" '*control.tar.gz' | tar xzO --wildcards -f - '*control'","r")
- line = control.readline()
- while 1:
- if not line: break
-@@ -122,7 +122,7 @@ class Package:
- if self.isdeb:
- data = os.popen("ar p "+fn+" data.tar.gz | tar tfz -","r")
- else:
-- data = os.popen("tar xfzO "+fn+" '*data.tar.gz' | tar tfz -","r")
-+ data = os.popen("tar xzO --wildcards -f "+fn+" '*data.tar.gz' | tar tfz -","r")
- while 1:
- line = data.readline()
- if not line: break