2012-05-11 15:00:02

by Petr Baudis

[permalink] [raw]
Subject: [PATCH] deb-pkg: Fix packaging with non-standard umask

When building with a different umask than 022 (e.g. umask 027),
the packaged files would carry the non-standard rights over,
wreaking havoc especially in case of linux-libc-dev.

This patch fixes the problem for sane umasks.

Signed-off-by: Petr Baudis <[email protected]>

--- scripts/package/builddeb~ 2012-03-01 02:28:15.571721530 +0100
+++ scripts/package/builddeb 2012-03-15 20:04:49.497938508 +0100
@@ -23,7 +23,7 @@

# Fix ownership and permissions
chown -R root:root "$pdir"
- chmod -R go-w "$pdir"
+ chmod -R u+rwX,go+rX-w "$pdir"

# Attempt to find the correct Debian architecture
local forcearch="" debarch=""