diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-10-11 04:07:46 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-10-11 04:07:51 -0400 |
commit | 22b6db86586cbdb4662dbe5f61d85b6610104025 (patch) | |
tree | 1e7816da4f167c6287a1c34dacd1f5c9a4274f46 /eclass | |
parent | x11-wm/jwm: Use default emake install to simply src_install() and fix sandbox... (diff) | |
download | gentoo-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')
-rw-r--r-- | eclass/games.eclass | 4 |
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 |