diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-06-14 20:53:16 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-06-14 20:53:16 +0000 |
commit | 82a9f3d7c3ed81c9f41827aec4b8a16b1b162948 (patch) | |
tree | f15805cce00d5d099260f0f27dbbbf9836060b0b /openwrt/toolchain/ipkg-utils | |
parent | c87e3808f69535cf0a2293d19d1346bf099e3f00 (diff) | |
download | mtk-20170518-82a9f3d7c3ed81c9f41827aec4b8a16b1b162948.zip mtk-20170518-82a9f3d7c3ed81c9f41827aec4b8a16b1b162948.tar.gz mtk-20170518-82a9f3d7c3ed81c9f41827aec4b8a16b1b162948.tar.bz2 |
Add a fix from aorlinsk to fix an issue with the order in options passed to tar
SVN-Revision: 1242
Diffstat (limited to 'openwrt/toolchain/ipkg-utils')
-rw-r--r-- | openwrt/toolchain/ipkg-utils/1.7/ipkg-utils-1.7-ipkg_build_tar.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/openwrt/toolchain/ipkg-utils/1.7/ipkg-utils-1.7-ipkg_build_tar.patch b/openwrt/toolchain/ipkg-utils/1.7/ipkg-utils-1.7-ipkg_build_tar.patch new file mode 100644 index 0000000..441d3ad --- /dev/null +++ b/openwrt/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 + |