diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2000-05-28 04:22:32 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2000-05-28 04:22:32 +0000 |
commit | 520aebb9e0d3e4c95318503d226cbc1b5f828ca2 (patch) | |
tree | 934b06abbe7f281069f58f76f5d89ead3491e1e9 | |
parent | 06b735869ec6f1aade79eb2c8417fce1fa80fc50 (diff) |
Need -DUVM if UVM is enabled.
Alignment saved us on i386 and sparc, but it doesn't save us on 68k.
-rw-r--r-- | bin/ps/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bin/ps/Makefile b/bin/ps/Makefile index e6194dd7e33..92b75b3ed33 100644 --- a/bin/ps/Makefile +++ b/bin/ps/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.4 1997/09/21 11:35:32 deraadt Exp $ +# $OpenBSD: Makefile,v 1.5 2000/05/28 04:22:31 art Exp $ PROG= ps SRCS= fmt.c keyword.c nlist.c print.c ps.c @@ -8,3 +8,7 @@ BINGRP= kmem BINMODE=2555 .include <bsd.prog.mk> +.if (${UVM} == "yes") +CFLAGS+=-DUVM +.endif + |