summaryrefslogtreecommitdiff
path: root/usr.bin/fstat
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>1999-06-23 12:56:19 +0000
committerArtur Grabowski <art@cvs.openbsd.org>1999-06-23 12:56:19 +0000
commit069c4eb8e06bde89bf36d7ea3d52c9ff4cb0e5e0 (patch)
tree3374ff0a325e91355cc9c6d4c1f43651a0aacc9a /usr.bin/fstat
parent8c8786a83750e0c9d15d9fc9011a03778eeae205 (diff)
add -DUVM to CFLAGS if we run UVM
Diffstat (limited to 'usr.bin/fstat')
-rw-r--r--usr.bin/fstat/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.bin/fstat/Makefile b/usr.bin/fstat/Makefile
index 8c6090f327c..fa40fd495ef 100644
--- a/usr.bin/fstat/Makefile
+++ b/usr.bin/fstat/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.4 1998/06/25 06:21:33 deraadt Exp $
+# $OpenBSD: Makefile,v 1.5 1999/06/23 12:56:18 art Exp $
PROG= fstat
DPADD= ${LIBKVM}
@@ -8,3 +8,7 @@ BINGRP= kmem
BINMODE=2555
.include <bsd.prog.mk>
+
+.if (${UVM} == "yes")
+CFLAGS+=-DUVM
+.endif