Fixes ROOT_GROUP setting for Cygwin.
This commit is contained in:
parent
60318d6f23
commit
559045744d
1 changed files with 4 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Cygwin.mk,v 1.2 2013/02/15 09:22:50 obache Exp $
|
||||
# $NetBSD: Cygwin.mk,v 1.3 2013/02/20 12:42:43 obache Exp $
|
||||
#
|
||||
# Variable definitions for the Windows with Cygwin.
|
||||
|
||||
|
@ -54,7 +54,9 @@ PKGDIRMODE?= 775
|
|||
# ROOT_USER might be numeric in the special case of Administrator; canonify it:
|
||||
ROOT_CMD?= ${SU} - "$$(id -un ${ROOT_USER})" -c
|
||||
ROOT_USER?= ${BINOWN}
|
||||
ROOT_GROUP?= id -g Administraotr
|
||||
.if !defined(ROOT_GROUP)
|
||||
ROOT_GROUP!= id -g Administrators
|
||||
.endif
|
||||
TOUCH_FLAGS?=
|
||||
ULIMIT_CMD_datasize?= ulimit -d `ulimit -H -d`
|
||||
ULIMIT_CMD_stacksize?= ulimit -s `ulimit -H -s`
|
||||
|
|
Loading…
Reference in a new issue