summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@nbd.name>2017-05-30 15:37:10 +0200
committerJo-Philipp Wich <jo@mein.io>2017-12-13 15:48:33 +0100
commite8bd0a606a60ad37a7a737943f6b5a5347953167 (patch)
treec02942f3e13ecdfca52a8bec537d543a232b7a48 /tools
parent59a1c1675d4dc2783673a3c2b7d10f6146253357 (diff)
downloadopenwrt-e8bd0a606a60ad37a7a737943f6b5a5347953167.tar.gz
openwrt-e8bd0a606a60ad37a7a737943f6b5a5347953167.tar.bz2
openwrt-e8bd0a606a60ad37a7a737943f6b5a5347953167.zip
tar: override symlink permissions
On Linux, symlink permissions cannot be altered and are always 0777. On Mac OS X they can be 0755. Force 0777 here to keep tarballs reproducible across systems Signed-off-by: Felix Fietkau <nbd@nbd.name> (cherry picked from commit e25cedd0b5621dc02e47eea674006578ac062c9f)
Diffstat (limited to 'tools')
-rw-r--r--tools/tar/patches/110-symlink-force-permissions.patch10
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/tar/patches/110-symlink-force-permissions.patch b/tools/tar/patches/110-symlink-force-permissions.patch
new file mode 100644
index 0000000000..83dbda6ec5
--- /dev/null
+++ b/tools/tar/patches/110-symlink-force-permissions.patch
@@ -0,0 +1,10 @@
+--- a/src/create.c
++++ b/src/create.c
+@@ -1851,6 +1851,7 @@ dump_file0 (struct tar_stat_info *st, ch
+ #ifdef HAVE_READLINK
+ else if (S_ISLNK (st->stat.st_mode))
+ {
++ st->stat.st_mode |= 0777; /* make permissions portable */
+ st->link_name = areadlinkat_with_size (parentfd, name, st->stat.st_size);
+ if (!st->link_name)
+ {