summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2015-10-11 04:07:46 -0400
committerMike Frysinger <vapier@gentoo.org>2015-10-11 04:07:51 -0400
commit22b6db86586cbdb4662dbe5f61d85b6610104025 (patch)
tree1e7816da4f167c6287a1c34dacd1f5c9a4274f46 /eclass/games.eclass
parentx11-wm/jwm: Use default emake install to simply src_install() and fix sandbox... (diff)
downloadgentoo-22b6db86586cbdb4662dbe5f61d85b6610104025.tar.gz
gentoo-22b6db86586cbdb4662dbe5f61d85b6610104025.tar.bz2
gentoo-22b6db86586cbdb4662dbe5f61d85b6610104025.zip
games.eclass: use group 0 to fix building on BSD systems #562262
Diffstat (limited to 'eclass/games.eclass')
-rw-r--r--eclass/games.eclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/games.eclass b/eclass/games.eclass
index 03421b332e76..7d231e186cc9 100644
--- a/eclass/games.eclass
+++ b/eclass/games.eclass
@@ -247,14 +247,14 @@ prepgamesdirs() {
find "${D}/${dir}" -type f -print0 | xargs -0 chmod $mode
# common trees should not be games owned #264872 #537580
- fowners root:root "${dir}"
+ fowners root:0 "${dir}"
fperms 755 "${dir}"
if [[ ${dir} == "${GAMES_PREFIX}" \
|| ${dir} == "${GAMES_PREFIX_OPT}" ]] ; then
for d in $(get_libdir) bin ; do
# check if dirs exist to avoid "nonfatal" option
if [[ -e ${D}/${dir}/${d} ]] ; then
- fowners root:root "${dir}/${d}"
+ fowners root:0 "${dir}/${d}"
fperms 755 "${dir}/${d}"
fi
done