summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorapb <apb@NetBSD.org>2012-08-14 12:19:16 +0000
committerapb <apb@NetBSD.org>2012-08-14 12:19:16 +0000
commit6b0b54eac35fc2f46c65c83686b7baa17137d3dc (patch)
tree68a16d6dc6c057d381ffdb1d434d2719c2b24750 /Makefile
parent6ac0ee6712df4b8b6b60993a4ab855cf5fa2103f (diff)
Fix unbalanced quotes in .if ${MKRUMP} != "no"
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index fb084848e29..000286aef6b 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.293 2012/08/08 14:00:31 christos Exp $
+# $NetBSD: Makefile,v 1.294 2012/08/14 12:19:16 apb Exp $
#
# This is the top-level makefile for building NetBSD. For an outline of
@@ -256,7 +256,7 @@ BUILDTARGETS+= do-lib
.if ${MKKMOD} != "no"
BUILDTARGETS+= do-sys-modules
.endif
-.if ${MKRUMP} != "no
+.if ${MKRUMP} != "no"
BUILDTARGETS+= do-sys-rump-dev-lib do-sys-rump-fs-lib
BUILDTARGETS+= do-sys-rump-kern-lib do-sys-rump-net-lib
.endif