With the new chown wrapper we get spammed to death by each and every
ebuild due to us chgrp-ing to a non-existant group. Use the once
determined for Portage at configure time instead.
# default target
printf '%s\n' "${@}" >> "${T}/eclass-debug.log"
# let the portage user own/write to this file
- chgrp portage "${T}/eclass-debug.log" &>/dev/null
+ chgrp ${PORTAGE_GROUP} "${T}/eclass-debug.log" &>/dev/null
chmod g+w "${T}/eclass-debug.log" &>/dev/null
fi
}