[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20120511144949.GL24321@machine.or.cz>
Date: Fri, 11 May 2012 16:49:49 +0200
From: Petr Baudis <pasky@....cz>
To: linux-kernel@...r.kernel.org
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 <pasky@....cz>
--- 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=""
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists