mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-27 18:35:55 +02:00
[tools] ipkg-utils: utilize the tar -p flag to preserve permissions (#7667)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26258 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
d3db86b4cc
commit
ebdf118811
12
tools/ipkg-utils/patches/190-preserve_permissions.patch
Normal file
12
tools/ipkg-utils/patches/190-preserve_permissions.patch
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
--- a/ipkg-build
|
||||||
|
+++ b/ipkg-build
|
||||||
|
@@ -249,7 +249,8 @@ tmp_dir=$dest_dir/IPKG_BUILD.$$
|
||||||
|
mkdir $tmp_dir
|
||||||
|
|
||||||
|
echo $CONTROL > $tmp_dir/tarX
|
||||||
|
-( cd $pkg_dir && $TAR $ogargs -X $tmp_dir/tarX -czf $tmp_dir/data.tar.gz . )
|
||||||
|
+# Preserve permissions (-p) when creating data.tar.gz as non-root user
|
||||||
|
+( cd $pkg_dir && $TAR $ogargs -X $tmp_dir/tarX -czpf $tmp_dir/data.tar.gz . )
|
||||||
|
|
||||||
|
installed_size=`du -b $tmp_dir/data.tar.gz | cut -f1`
|
||||||
|
sed -i -e "s/^Installed-Size: .*/Installed-Size: $installed_size/" \
|
Loading…
Reference in New Issue
Block a user