1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00

There is no guarantee that user gid maps to a name so in etc/Makefile

we want _gid to be id, so use _gn for the name.
This commit is contained in:
Simon J. Gerraty 2014-05-16 14:49:37 +00:00
parent 1a682d2cea
commit 7bbde42e0d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/projects/bmake/; revision=266226

View File

@ -140,10 +140,11 @@ _uid!= id -u
.if !defined(USER)
USER!= id -un
.endif
_gid!= id -gn
_gid!= id -g
_gn!= id -gn
.for x in BIN CONF DOC INFO KMOD LIB MAN NLS SHARE
$xOWN= ${USER}
$xGRP= ${_gid}
$xGRP= ${_gn}
.endfor
.endif
.endif