From 22b6db86586cbdb4662dbe5f61d85b6610104025 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sun, 11 Oct 2015 04:07:46 -0400 Subject: games.eclass: use group 0 to fix building on BSD systems #562262 --- eclass/games.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'eclass') 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 -- cgit v1.2.3-65-gdbad