summaryrefslogtreecommitdiff
path: root/editors/flim-emacs20/Makefile
diff options
context:
space:
mode:
authorSteve Price <steve@FreeBSD.org>1999-01-18 02:33:02 +0000
committerSteve Price <steve@FreeBSD.org>1999-01-18 02:33:02 +0000
commit8fc0da1a4c347139ae438d4f75a3c422ba4581ed (patch)
treecacad7b45943e2b7cd26c310f36e3f5d39c20c72 /editors/flim-emacs20/Makefile
parentGet this to build in -current. (diff)
The new version of texinfo in -current defaults to bailing with no
output on errors. Add the --force flag so it doesn't.
Notes
Notes: svn path=/head/; revision=16122
Diffstat (limited to 'editors/flim-emacs20/Makefile')
-rw-r--r--editors/flim-emacs20/Makefile14
1 files changed, 11 insertions, 3 deletions
diff --git a/editors/flim-emacs20/Makefile b/editors/flim-emacs20/Makefile
index c733dd32a4c3..74533c262c71 100644
--- a/editors/flim-emacs20/Makefile
+++ b/editors/flim-emacs20/Makefile
@@ -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>