summaryrefslogtreecommitdiff
path: root/gnu/usr.bin
diff options
context:
space:
mode:
authorlukem <lukem@NetBSD.org>2003-07-18 08:26:01 +0000
committerlukem <lukem@NetBSD.org>2003-07-18 08:26:01 +0000
commitf134f3dc381b71cbc98aaa098c1750105490b58e (patch)
tree884a0c7b4e2f84a093ca74c380bd5e72fc8a82ce /gnu/usr.bin
parent74182febed5a0be4a2b4293394acec684ca4feac (diff)
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.
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r--gnu/usr.bin/texinfo/install-info/Makefile4
1 files changed, 2 insertions, 2 deletions
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