diff options
| author | lukem <lukem@NetBSD.org> | 2003-07-18 08:26:01 +0000 |
|---|---|---|
| committer | lukem <lukem@NetBSD.org> | 2003-07-18 08:26:01 +0000 |
| commit | f134f3dc381b71cbc98aaa098c1750105490b58e (patch) | |
| tree | 884a0c7b4e2f84a093ca74c380bd5e72fc8a82ce /gnu | |
| parent | 74182febed5a0be4a2b4293394acec684ca4feac (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')
| -rw-r--r-- | gnu/usr.bin/texinfo/install-info/Makefile | 4 |
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 |
