The new version of texinfo in -current defaults to bailing with no

output on errors.  Add the --force flag so it doesn't.
This commit is contained in:
Steve Price 1999-01-18 02:33:02 +00:00
parent 13e93cd996
commit 8fc0da1a4c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=16122
3 changed files with 33 additions and 9 deletions

View file

@ -3,7 +3,7 @@
# Date created: 23 September 1998
# Whom: Shigeyuki FUKUSHIMA <shige@kuis.kyoto-u.ac.jp>
#
# $Id$
# $Id: Makefile,v 1.1.1.1 1999/01/16 01:36:55 kuriyama Exp $
#
DISTNAME= flim-${FLIM_VER}
@ -37,13 +37,21 @@ EMACS_VER= 20.3
EMACS_LIBDIR= share/${EMACS_NAME}
EMACS_CMD= ${PREFIX}/bin/${EMACS_NAME}-${EMACS_VER}
.include <bsd.port.pre.mk>
.if ${OSVERSION} >= 300006
MAKEINFO= makeinfo --no-split --force
.else
MAKEINFO= makeinfo --no-split
.endif
post-build:
@(cd ${WRKSRC} ; \
for i in mime-en.texi mime-ja.texi; do \
${MV} $${i} $${i}.jis ; \
${CAT} $${i}.jis | nkf -e > $${i} ; \
${ECHO} "===> Please ignore the following errors." ; \
makeinfo --no-split $${i} || ${TRUE} ; \
${MAKEINFO} $${i} || ${TRUE} ; \
done)
post-install:
@ -59,4 +67,4 @@ post-install:
done
.endif
.include <bsd.port.mk>
.include <bsd.port.post.mk>

View file

@ -3,7 +3,7 @@
# Date created: 23 September 1998
# Whom: Shigeyuki FUKUSHIMA <shige@kuis.kyoto-u.ac.jp>
#
# $Id$
# $Id: Makefile,v 1.1.1.1 1999/01/16 01:33:59 kuriyama Exp $
#
DISTNAME= flim-${FLIM_VER}
@ -36,13 +36,21 @@ EMACS_VER= 20.3
EMACS_LIBDIR= share/${EMACS_NAME}
EMACS_CMD= ${PREFIX}/bin/${EMACS_NAME}-${EMACS_VER}
.include <bsd.port.pre.mk>
.if ${OSVERSION} >= 300006
MAKEINFO= makeinfo --no-split --force
.else
MAKEINFO= makeinfo --no-split
.endif
post-build:
@(cd ${WRKSRC} ; \
for i in mime-en.texi mime-ja.texi; do \
${MV} $${i} $${i}.jis ; \
${CAT} $${i}.jis | nkf -e > $${i} ; \
${ECHO} "===> Please ignore the following errors." ; \
makeinfo --no-split $${i} || ${TRUE} ; \
${MAKEINFO} $${i} || ${TRUE} ; \
done)
post-install:
@ -58,4 +66,4 @@ post-install:
done
.endif
.include <bsd.port.mk>
.include <bsd.port.post.mk>

View file

@ -3,7 +3,7 @@
# Date created: 23 September 1998
# Whom: Shigeyuki FUKUSHIMA <shige@kuis.kyoto-u.ac.jp>
#
# $Id$
# $Id: Makefile,v 1.1.1.1 1999/01/16 01:36:55 kuriyama Exp $
#
DISTNAME= flim-${FLIM_VER}
@ -37,13 +37,21 @@ EMACS_VER= 20.3
EMACS_LIBDIR= share/${EMACS_NAME}
EMACS_CMD= ${PREFIX}/bin/${EMACS_NAME}-${EMACS_VER}
.include <bsd.port.pre.mk>
.if ${OSVERSION} >= 300006
MAKEINFO= makeinfo --no-split --force
.else
MAKEINFO= makeinfo --no-split
.endif
post-build:
@(cd ${WRKSRC} ; \
for i in mime-en.texi mime-ja.texi; do \
${MV} $${i} $${i}.jis ; \
${CAT} $${i}.jis | nkf -e > $${i} ; \
${ECHO} "===> Please ignore the following errors." ; \
makeinfo --no-split $${i} || ${TRUE} ; \
${MAKEINFO} $${i} || ${TRUE} ; \
done)
post-install:
@ -59,4 +67,4 @@ post-install:
done
.endif
.include <bsd.port.mk>
.include <bsd.port.post.mk>