aboutsummaryrefslogtreecommitdiffstats
path: root/tools/ipkg-utils/patches/120-build_tar.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-09-27 14:06:46 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-09-27 14:06:46 +0000
commita723361df9cb4cb58d7e806218d98df72d57cdae (patch)
treedc35000b8b3ff329b1029e8563aab31aaba9f98b /tools/ipkg-utils/patches/120-build_tar.patch
parent0199c0e95cfbd490a1c39ac744fdb68149c73977 (diff)
downloadmaster-187ad058-a723361df9cb4cb58d7e806218d98df72d57cdae.tar.gz
master-187ad058-a723361df9cb4cb58d7e806218d98df72d57cdae.tar.bz2
master-187ad058-a723361df9cb4cb58d7e806218d98df72d57cdae.zip
move tools from toolchain/ to tools/
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4866 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'tools/ipkg-utils/patches/120-build_tar.patch')
-rw-r--r--tools/ipkg-utils/patches/120-build_tar.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/ipkg-utils/patches/120-build_tar.patch b/tools/ipkg-utils/patches/120-build_tar.patch
new file mode 100644
index 0000000000..441d3adf04
--- /dev/null
+++ b/tools/ipkg-utils/patches/120-build_tar.patch
@@ -0,0 +1,16 @@
+This patch from aorlinsk fixes an issue with order in options passed to tar
+
+ http://openwrt.org/forum/viewtopic.php?pid=8332#p8332
+
+
+--- ipkg-utils-1.7/ipkg-build.orig 2005-06-14 23:48:36.000000000 +0200
++++ ipkg-utils-1.7/ipkg-build 2005-06-14 23:50:03.000000000 +0200
+@@ -243,7 +243,7 @@
+ mkdir $tmp_dir
+
+ echo $CONTROL > $tmp_dir/tarX
+-( cd $pkg_dir && tar $ogargs -czf $tmp_dir/data.tar.gz . -X $tmp_dir/tarX )
++( cd $pkg_dir && tar $ogargs -X $tmp_dir/tarX -czf $tmp_dir/data.tar.gz . )
+ ( cd $pkg_dir/$CONTROL && tar $ogargs -czf $tmp_dir/control.tar.gz . )
+ rm $tmp_dir/tarX
+