From: nico Date: Tue, 14 Jun 2005 20:53:16 +0000 (+0000) Subject: Add a fix from aorlinsk to fix an issue with the order in options passed to tar X-Git-Url: http://git.ozo.com/?a=commitdiff_plain;h=1d7e560125a37bf79658229e0179394d95524d65;hp=d847a1ac75f5abd93f377f429d6e26f1106a95ac;p=openwrt-10.03%2F.git Add a fix from aorlinsk to fix an issue with the order in options passed to tar git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1242 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/toolchain/ipkg-utils/1.7/ipkg-utils-1.7-ipkg_build_tar.patch b/toolchain/ipkg-utils/1.7/ipkg-utils-1.7-ipkg_build_tar.patch new file mode 100644 index 000000000..441d3adf0 --- /dev/null +++ b/toolchain/ipkg-utils/1.7/ipkg-utils-1.7-ipkg_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 +