diff options
author | Chris Larson <clarson@kergoth.com> | 2004-11-09 00:36:47 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-11-09 00:36:47 +0000 |
commit | f96441b9faf769c9ecdd4d338b605ea3d0cc4010 (patch) | |
tree | edb17ec2c4ea13c5acb1c7350957a249a820e28d /ipkg-utils/files/fix-ipkg-tar.patch | |
parent | b6588aa6851fb220cedc387d21c51513ef8d67f4 (diff) |
Disable bk EOLN_NATIVE conversions on all files in packages FILESPATHs, to prevent it screwing up patches.
BKrev: 4190111fA4MuVozAqwE7xOSL9fr-TA
Diffstat (limited to 'ipkg-utils/files/fix-ipkg-tar.patch')
-rw-r--r-- | ipkg-utils/files/fix-ipkg-tar.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/ipkg-utils/files/fix-ipkg-tar.patch b/ipkg-utils/files/fix-ipkg-tar.patch index e69de29bb2..faeffffffd 100644 --- a/ipkg-utils/files/fix-ipkg-tar.patch +++ b/ipkg-utils/files/fix-ipkg-tar.patch @@ -0,0 +1,11 @@ +--- ipkg-utils/ipkg-build.orig 2004-10-30 15:02:32.637293160 -0400 ++++ ipkg-utils/ipkg-build 2004-10-30 15:02:57.446521584 -0400 +@@ -226,7 +226,7 @@ tmp_dir=$dest_dir/IPKG_BUILD.$$ + 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 -czf $tmp_dir/data.tar.gz -X $tmp_dir/tarX . ) + ( cd $pkg_dir/$CONTROL && tar $ogargs -czf $tmp_dir/control.tar.gz . ) + rm $tmp_dir/tarX + |