diff options
author | Chris Larson <kergoth@openedhand.com> | 2006-07-13 09:13:21 +0000 |
---|---|---|
committer | Chris Larson <kergoth@openedhand.com> | 2006-07-13 09:13:21 +0000 |
commit | 5f3d79f3195e24dde7169971343f4db03847a02e (patch) | |
tree | 3070e4043e413f3e477a407d7e37e0c3de0391e0 /openembedded/packages/ipkg-utils/ipkg-utils-native | |
parent | 9ddd9dcefa6c1c0788151be43ee844b13ef1dd8a (diff) | |
download | openembedded-core-5f3d79f3195e24dde7169971343f4db03847a02e.tar.gz openembedded-core-5f3d79f3195e24dde7169971343f4db03847a02e.tar.bz2 openembedded-core-5f3d79f3195e24dde7169971343f4db03847a02e.tar.xz openembedded-core-5f3d79f3195e24dde7169971343f4db03847a02e.zip |
poky: ipkg-utils update from upstream OE. Locks down to a specific cvs version rather than floating, which seems to fix some issues with root filesystem population in the build.
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@512 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/packages/ipkg-utils/ipkg-utils-native')
-rw-r--r-- | openembedded/packages/ipkg-utils/ipkg-utils-native/ipkg-utils-fix.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/openembedded/packages/ipkg-utils/ipkg-utils-native/ipkg-utils-fix.patch b/openembedded/packages/ipkg-utils/ipkg-utils-native/ipkg-utils-fix.patch new file mode 100644 index 000000000..a9e6fc4d0 --- /dev/null +++ b/openembedded/packages/ipkg-utils/ipkg-utils-native/ipkg-utils-fix.patch @@ -0,0 +1,17 @@ +--- ../../../work/i686-linux/ipkg-utils-native-1.6+cvs20050404-r6/ipkg-utils/ipkg.py 2005-01-08 19:08:52.000000000 +0100 ++++ ipkg-utils/ipkg.py 2006-06-29 12:52:58.466446000 +0200 +@@ -150,11 +150,11 @@ + stat = os.stat(fn) + self.size = stat[ST_SIZE] + self.filename = os.path.basename(fn) +- ## sys.stderr.write(" extracting control.tar.gz from %s\n"% (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 xfzO - './control'","r") + else: +- control = os.popen("tar xfzO "+fn+" '*control.tar.gz' | tar xfzO - '*control'","r") ++ control = os.popen("tar xfzO "+fn+" 'control.tar.gz' | tar xfzO - './control'","r") + line = control.readline() + while 1: + if not line: break |