From f134f3dc381b71cbc98aaa098c1750105490b58e Mon Sep 17 00:00:00 2001 From: lukem Date: Fri, 18 Jul 2003 08:26:01 +0000 Subject: Add MKUNPRIVED; if not no has the same semantics as if UNPRIVED was defined. Replace defined(UNPRIVED) tests with ${MKUNPRIVED} != "no" Add MKUPDATE; if not no has the same semantics as if UPDATE was defined. Replace defined(UPDATE) tests with ${MKUPDATE} != "no" Improve documentation for these and other make flags. --- gnu/usr.bin/texinfo/install-info/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/usr.bin') diff --git a/gnu/usr.bin/texinfo/install-info/Makefile b/gnu/usr.bin/texinfo/install-info/Makefile index 0085471dd5f..f4336146d00 100644 --- a/gnu/usr.bin/texinfo/install-info/Makefile +++ b/gnu/usr.bin/texinfo/install-info/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2003/01/17 15:32:24 wiz Exp $ +# $NetBSD: Makefile,v 1.9 2003/07/18 08:26:03 lukem Exp $ PROG= install-info SRCS= install-info.c @@ -8,7 +8,7 @@ SRCS= install-info.c .PATH: ${IDIST}/util ${IDIST}/doc infodir-meta: -.if defined(UNPRIVED) && (${MKINFO} != "no") +.if (${MKUNPRIVED} != "no" && ${MKINFO} != "no") echo "./usr/share/info/dir type=file mode=0644 uname=root gname=wheel" \ | ${METALOG.add} .endif -- cgit