diff options
author | tv <tv@pkgsrc.org> | 2005-04-20 21:40:30 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2005-04-20 21:40:30 +0000 |
commit | 78c4e6f2ec174d2033e4f2ce883dac0af7ee9529 (patch) | |
tree | 334bc3fd39efe12044144ede60431de1f46ba302 /mk/platform/Interix.mk | |
parent | 04c024f6aea182a05311dd4a80abc13c61027a16 (diff) | |
download | pkgsrc-78c4e6f2ec174d2033e4f2ce883dac0af7ee9529.tar.gz |
On Interix, memorysize is actually "vmemory"; use ulimit -v.
Noted by Steve O'Hara-Smith <steve@sohara.org>.
Diffstat (limited to 'mk/platform/Interix.mk')
-rw-r--r-- | mk/platform/Interix.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/platform/Interix.mk b/mk/platform/Interix.mk index 1388152f2dc..bef3ab5f281 100644 --- a/mk/platform/Interix.mk +++ b/mk/platform/Interix.mk @@ -1,4 +1,4 @@ -# $NetBSD: Interix.mk,v 1.30 2005/03/28 15:04:07 tv Exp $ +# $NetBSD: Interix.mk,v 1.31 2005/04/20 21:40:30 tv Exp $ # # Variable definitions for the Interix operating system. @@ -136,7 +136,7 @@ ROOT_GROUP?= 131616 # +Administrators or native language equivalent TOUCH_FLAGS?= ULIMIT_CMD_datasize?= ulimit -d `ulimit -H -d` ULIMIT_CMD_stacksize?= ulimit -s `ulimit -H -s` -ULIMIT_CMD_memorysize?= ulimit -m `ulimit -H -m` +ULIMIT_CMD_memorysize?= ulimit -v `ulimit -H -v` # imake installs manpages in weird places IMAKE_MAN_SOURCE_PATH= man/man |