summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorcheusov <cheusov@pkgsrc.org>2014-08-14 00:21:24 +0000
committercheusov <cheusov@pkgsrc.org>2014-08-14 00:21:24 +0000
commite02f9607e3b75882a9e30127322f7492a3a4b4a6 (patch)
treeaf99892ee8a56e3c0111905595d6375a55406bd6 /mk
parent0412a0c8c2534b3c629a3bb46c7926b5c3d8b741 (diff)
downloadpkgsrc-e02f9607e3b75882a9e30127322f7492a3a4b4a6.tar.gz
Fix packages creation on Interix.
User/group names are used instead of uid/gid. Problem with spaces inside user/group name should be fixed by Cygwin support added some time ago.
Diffstat (limited to 'mk')
-rw-r--r--mk/platform/Interix.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/platform/Interix.mk b/mk/platform/Interix.mk
index 9ce6410833f..8b3ccd8691e 100644
--- a/mk/platform/Interix.mk
+++ b/mk/platform/Interix.mk
@@ -1,4 +1,4 @@
-# $NetBSD: Interix.mk,v 1.72 2014/08/13 18:48:09 cheusov Exp $
+# $NetBSD: Interix.mk,v 1.73 2014/08/14 00:21:24 cheusov Exp $
#
# Variable definitions for the Interix operating system.
@@ -98,7 +98,7 @@ 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?= 131616 # +Administrators or native language equivalent
+ROOT_GROUP?= +Administrators # or native language equivalent
TOUCH_FLAGS?=
ULIMIT_CMD_datasize?= ulimit -d `ulimit -H -d`
ULIMIT_CMD_stacksize?= ulimit -s `ulimit -H -s`