diff options
author | tv <tv@pkgsrc.org> | 2004-03-11 19:37:42 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2004-03-11 19:37:42 +0000 |
commit | d97c3d58e10d74d8e6a67cad22b124c2ab0b282b (patch) | |
tree | baa448ab531b2359b7713eaaf370b558d9e51239 | |
parent | e53f7683c56a3cd7506f96df5861f3534d293cef (diff) | |
download | pkgsrc-d97c3d58e10d74d8e6a67cad22b124c2ab0b282b.tar.gz |
Fix "root" user and group.
-rw-r--r-- | mk/defs.Interix.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mk/defs.Interix.mk b/mk/defs.Interix.mk index bfafe6c7439..d7c80d3dd29 100644 --- a/mk/defs.Interix.mk +++ b/mk/defs.Interix.mk @@ -1,4 +1,4 @@ -# $NetBSD: defs.Interix.mk,v 1.1 2004/03/11 17:53:16 tv Exp $ +# $NetBSD: defs.Interix.mk,v 1.2 2004/03/11 19:37:42 tv Exp $ # # Variable definitions for the Interix operating system. @@ -88,9 +88,9 @@ MOTIF_TYPE_DEFAULT?= openmotif # default 2.0 compatible libs type MOTIF12_TYPE_DEFAULT?= lesstif12 # default 1.2 compatible libs type NOLOGIN?= /sbin/nologin PKG_TOOLS_BIN?= ${LOCALBASE}/sbin -ROOT_CMD?= ${SU} - root -c -ROOT_USER?= root -ROOT_GROUP?= wheel +ROOT_CMD?= ${SU} - ${ROOT_USER} -c +ROOT_USER?= ${BINOWN} +ROOT_GROUP?= +Administrators TOUCH_FLAGS?= ULIMIT_CMD_datasize?= ulimit -d `ulimit -H -d` ULIMIT_CMD_stacksize?= ulimit -s `ulimit -H -s` |