diff options
author | jlam <jlam@pkgsrc.org> | 2006-03-05 16:27:22 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2006-03-05 16:27:22 +0000 |
commit | 6e0c05032135f85018332563ebc1048e6b05b159 (patch) | |
tree | e3c6cf61f7cffff30eee10d4bef3729227d7edcb /mk/tools/tools.Linux.mk | |
parent | d6bd870fec965dee7f70a4f3b12e39fa5abac05b (diff) | |
download | pkgsrc-6e0c05032135f85018332563ebc1048e6b05b159.tar.gz |
* Teach the tools framework how to supply the pkgsrc version of
makeinfo if no native makeinfo executable exists. Honor TEXINFO_REQD
when determining whether the native makeinfo can be used.
* Remove USE_MAKEINFO and replace it with USE_TOOLS+=makeinfo.
* Get rid of all the "split" argument deduction for makeinfo since
the PLIST module already handles varying numbers of split info files
correctly.
NOTE: Platforms that have "makeinfo" in the base system should check
that the makeinfo entries of pkgsrc/mk/tools.${OPSYS}.mk are
correct.
Diffstat (limited to 'mk/tools/tools.Linux.mk')
-rw-r--r-- | mk/tools/tools.Linux.mk | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mk/tools/tools.Linux.mk b/mk/tools/tools.Linux.mk index ac9a54e55a5..dc0062cfda6 100644 --- a/mk/tools/tools.Linux.mk +++ b/mk/tools/tools.Linux.mk @@ -1,4 +1,4 @@ -# $NetBSD: tools.Linux.mk,v 1.28 2006/01/08 23:00:00 jlam Exp $ +# $NetBSD: tools.Linux.mk,v 1.29 2006/03/05 16:27:29 jlam Exp $ # # System-supplied tools for the Linux operating system. @@ -109,6 +109,9 @@ TOOLS_PLATFORM.mail?= /bin/mail # RH, Mandrake .elif exists(/usr/bin/mail) TOOLS_PLATFORM.mail?= /usr/bin/mail # Debian, Slackware, SuSE .endif +.if exists(/usr/bin/makeinfo) +TOOLS_PLATFORM.makeinfo?= /usr/bin/makeinfo +.endif TOOLS_PLATFORM.mkdir?= /bin/mkdir -p .if exists(/usr/bin/mktemp) TOOLS_PLATFORM.mktemp?= /usr/bin/mktemp |