diff options
author | wosch <wosch@FreeBSD.org> | 1997-10-11 17:30:18 +0000 |
---|---|---|
committer | wosch <wosch@FreeBSD.org> | 1997-10-11 17:30:18 +0000 |
commit | a14e4dea11b5b83147d62a7cb7dacdec1ea19e15 (patch) | |
tree | c255b662614b4fbf2638d8306d62ea02d0627df9 | |
parent | 0b60d9f0b1e99540c01754def30ec2512ab09c0b (diff) | |
download | FreeBSD-src-a14e4dea11b5b83147d62a7cb7dacdec1ea19e15.zip FreeBSD-src-a14e4dea11b5b83147d62a7cb7dacdec1ea19e15.tar.gz |
Do not use an intermediate file. The intermediate filename will go
into the info output which may breaks other programs (e.g. info2html).
-rw-r--r-- | share/mk/bsd.info.mk | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/share/mk/bsd.info.mk b/share/mk/bsd.info.mk index e77408a..666d01e 100644 --- a/share/mk/bsd.info.mk +++ b/share/mk/bsd.info.mk @@ -1,4 +1,4 @@ -# $Id: bsd.info.mk,v 1.42 1997/10/04 13:00:56 wosch Exp $ +# $Id: bsd.info.mk,v 1.43 1997/10/09 18:14:18 wosch Exp $ # # The include file <bsd.info.mk> handles installing GNU (tech)info files. # Texinfo is a documentation system that uses a single source @@ -95,8 +95,7 @@ ${DESTDIR}${INFODIR}/${INFODIRFILE}: .texi.info .texinfo.info: ${MAKEINFO} ${MAKEINFOFLAGS} -I ${.CURDIR} -I ${SRCDIR} ${.IMPSRC} \ - -o ${.TARGET}.new - mv -f ${.TARGET}.new ${.TARGET} + -o ${.TARGET} .texi.dvi .texinfo.dvi: env TEXINPUTS=${.CURDIR}:${SRCDIR}:$$TEXINPUTS \ |