Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src Fix unbalanced quotes in .if ${MKRUMP} != "no"



details:   https://anonhg.NetBSD.org/src/rev/bdc9c588a7be
branches:  trunk
changeset: 780988:bdc9c588a7be
user:      apb <apb%NetBSD.org@localhost>
date:      Tue Aug 14 12:19:16 2012 +0000

description:
Fix unbalanced quotes in .if ${MKRUMP} != "no"

diffstat:

 Makefile |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 9cdf3cec0ba2 -r bdc9c588a7be Makefile
--- a/Makefile  Tue Aug 14 12:07:57 2012 +0000
+++ b/Makefile  Tue Aug 14 12:19:16 2012 +0000
@@ -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 @@
 .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



Home | Main Index | Thread Index | Old Index