Fix some bugs from bde's list (long lines)

This commit is contained in:
Peter Wemm 1997-03-29 12:39:52 +00:00
parent f0ccf9018b
commit f477a27251
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=24380

View File

@ -1,4 +1,4 @@
# $Id: bsd.info.mk,v 1.33 1997/03/12 06:24:52 peter Exp $
# $Id: bsd.info.mk,v 1.34 1997/03/12 07:14:44 peter Exp $
#
# The include file <bsd.info.mk> handles installing GNU (tech)info files.
# Texinfo is a documentation system that uses a single source
@ -85,11 +85,13 @@ ICOMPRESS_EXT?= ${COMPRESS_EXT}
.SUFFIXES: ${ICOMPRESS_EXT} .info .texi .texinfo
.texi.info:
${MAKEINFO} ${MAKEINFOFLAGS} -I ${.CURDIR} -I ${SRCDIR} ${.IMPSRC} -o ${.TARGET}.new
${MAKEINFO} ${MAKEINFOFLAGS} -I ${.CURDIR} -I ${SRCDIR} ${.IMPSRC} \
-o ${.TARGET}.new
mv -f ${.TARGET}.new ${.TARGET}
.texinfo.info:
${MAKEINFO} ${MAKEINFOFLAGS} -I ${.CURDIR} -I ${SRCDIR} ${.IMPSRC} -o ${.TARGET}.new
${MAKEINFO} ${MAKEINFOFLAGS} -I ${.CURDIR} -I ${SRCDIR} ${.IMPSRC} \
-o ${.TARGET}.new
mv -f ${.TARGET}.new ${.TARGET}
.PATH: ${.CURDIR} ${SRCDIR}
@ -135,12 +137,14 @@ DISTRIBUTION= info
.if !target(distribute)
distribute: _SUBDIR
cd ${.CURDIR} ; $(MAKE) install DESTDIR=${DISTDIR}/${DISTRIBUTION} SHARED=copies
cd ${.CURDIR} ; \
$(MAKE) install DESTDIR=${DISTDIR}/${DISTRIBUTION} SHARED=copies
.endif
.if defined(SRCS)
${INFO}.info: ${SRCS}
${MAKEINFO} ${MAKEINFOFLAGS} -I ${.CURDIR} -I ${SRCDIR} ${SRCS:S/^/${SRCDIR}\//g} -o ${INFO}.info.new
${MAKEINFO} ${MAKEINFOFLAGS} -I ${.CURDIR} -I ${SRCDIR} \
${SRCS:S/^/${SRCDIR}\//g} -o ${INFO}.info.new
mv -f ${INFO}.info.new ${INFO}.info
.endif