Current-Users archive

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

MKMAN issue breaking build



I am not sure why no one has noticed this yet but I cannot build
-current or even 7.0_STABLE unless I apply the patch at the bottom of
this message.  The issue is that the the two programs do not have man
pages and so add "MKMAN = no" at the top of the Makefile.  Then it
reads bsd.own.mk which usually sets it back to yes.  The patch simply
moves the MKMAN line below the bsd.own.mk line.

Can I commit?

Index: src/tests/lib/libc/net/getaddrinfo/Makefile
===================================================================
RCS file: /cvsroot/src/tests/lib/libc/net/getaddrinfo/Makefile,v
retrieving revision 1.1
diff -u -r1.1 Makefile
--- src/tests/lib/libc/net/getaddrinfo/Makefile 12 Jan 2011 02:58:40
-0000      1.1 +++ src/tests/lib/libc/net/getaddrinfo/Makefile 25 Aug
2016 15:37:30 -0000 @@ -1,8 +1,8 @@
 # $NetBSD: Makefile,v 1.1 2011/01/12 02:58:40 pgoyette Exp $
 
-MKMAN= no
 
 .include <bsd.own.mk>
+MKMAN = no
 
 TESTSDIR=      ${TESTSBASE}/lib/libc/net/getaddrinfo
 
Index: src/tests/lib/libc/regex/Makefile
===================================================================
RCS file: /cvsroot/src/tests/lib/libc/regex/Makefile,v
retrieving revision 1.9
diff -u -r1.9 Makefile
--- src/tests/lib/libc/regex/Makefile   24 Aug 2012 20:24:40 -0000
1.9 +++ src/tests/lib/libc/regex/Makefile   25 Aug 2016 15:37:30 -0000
@@ -1,8 +1,7 @@
 # $NetBSD: Makefile,v 1.9 2012/08/24 20:24:40 jmmv Exp $
 
-MKMAN= no
-
 .include <bsd.own.mk>
+MKMAN= no
 
 TESTSDIR?=     ${TESTSBASE}/lib/libc/regex
 IMPLEMENTATION?=       -DREGEX_SPENCER -DSKIP_LEFTASSOC


-- 
D'Arcy J.M. Cain <darcy%NetBSD.org@localhost>
http://www.NetBSD.org/ IM:darcy%Vex.Net@localhost


Home | Main Index | Thread Index | Old Index