[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20100227123530.GA15985@os.inf.tu-dresden.de>
Date: Sat, 27 Feb 2010 13:35:30 +0100
From: Adam Lackorzynski <adam@...inf.tu-dresden.de>
To: linux-kernel@...r.kernel.org
Cc: stable@...nel.org
Subject: [PATCH] 2.6.33: deb-pkg: Fix package creation with arbitrary umask
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@...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@...inf.tu-dresden.de
Lackorzynski http://os.inf.tu-dresden.de/~adam/
--
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