summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Wijsman <tomwij@gentoo.org>2013-03-20 16:45:56 +0000
committerTom Wijsman <tomwij@gentoo.org>2013-03-20 16:45:56 +0000
commit7472093cd94cd842e2bb097f0e5c1921beba2b97 (patch)
tree621976d355bf55e99bb4794f31714cbc8cf098ac /eclass/kernel-2.eclass
parentBump. (diff)
downloadgentoo-2-7472093cd94cd842e2bb097f0e5c1921beba2b97.tar.gz
gentoo-2-7472093cd94cd842e2bb097f0e5c1921beba2b97.tar.bz2
gentoo-2-7472093cd94cd842e2bb097f0e5c1921beba2b97.zip
Use UID 0 instead of root to assign permissions to super user, bug #315807.
Diffstat (limited to 'eclass/kernel-2.eclass')
-rw-r--r--eclass/kernel-2.eclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/kernel-2.eclass b/eclass/kernel-2.eclass
index 001a65dd1c39..1e6db22a257f 100644
--- a/eclass/kernel-2.eclass
+++ b/eclass/kernel-2.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/kernel-2.eclass,v 1.280 2013/03/20 07:55:54 tomwij Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/kernel-2.eclass,v 1.281 2013/03/20 16:45:56 tomwij Exp $
# Description: kernel.eclass rewrite for a clean base regarding the 2.6
# series of kernel with back-compatibility for 2.4
@@ -667,9 +667,9 @@ compile_headers_tweak_config() {
# install functions
#==============================================================
install_universal() {
- #fix silly permissions in tarball
+ # Fix silly permissions in tarball
cd "${WORKDIR}"
- chown -R root:0 * >& /dev/null
+ chown -R 0:0 * >& /dev/null
chmod -R a+r-w+X,u+w *
cd ${OLDPWD}
}