All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] 2.6.33: deb-pkg: Fix package creation with arbitrary umask
@ 2010-02-27 12:35 Adam Lackorzynski
  0 siblings, 0 replies; only message in thread
From: Adam Lackorzynski @ 2010-02-27 12:35 UTC (permalink / raw)
  To: linux-kernel; +Cc: stable


The used umask has influence on the permissions of the created files,
resulting in errors such as below when the umask is too restrictive:

dpkg-deb: building package `linux-image-2.6.33' in `../linux-image-2.6.33_2.6.33-3_i386.deb'.
dpkg-deb: control directory has bad permissions 700 (must be >=0755 and <=0775)
make[1]: *** [deb-pkg] Error 2

Signed-off-by: Adam Lackorzynski <adam@os.inf.tu-dresden.de>
---
 scripts/package/builddeb |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/scripts/package/builddeb b/scripts/package/builddeb
index 8b357b0..ddca190 100644
--- a/scripts/package/builddeb
+++ b/scripts/package/builddeb
@@ -21,7 +21,7 @@ create_package() {
 
 	# Fix ownership and permissions
 	chown -R root:root "$pdir"
-	chmod -R go-w "$pdir"
+	chmod -R go=u-w "$pdir"
 
 	# Create the package
 	dpkg-gencontrol -isp -p$pname -P"$pdir"
-- 
1.5.6.5


Adam
-- 
Adam                 adam@os.inf.tu-dresden.de
  Lackorzynski         http://os.inf.tu-dresden.de/~adam/

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2010-02-27 13:16 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-02-27 12:35 [PATCH] 2.6.33: deb-pkg: Fix package creation with arbitrary umask Adam Lackorzynski

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.