aboutsummaryrefslogtreecommitdiff
path: root/editors/semi
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2017-07-28 21:45:20 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2017-07-28 21:45:20 +0000
commitf872930d0e52c8802d4085a53fd91d3af6e0ddad (patch)
treea79f71211dc0ed6f08a805235e59f1fc3946e774 /editors/semi
parent0f17cf99be7bb6defa0b0a6f7788fad50febe6fb (diff)
downloadports-f872930d0e52c8802d4085a53fd91d3af6e0ddad.tar.gz
ports-f872930d0e52c8802d4085a53fd91d3af6e0ddad.zip
Notes
Diffstat (limited to 'editors/semi')
-rw-r--r--editors/semi/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/editors/semi/Makefile b/editors/semi/Makefile
index 577707f94d9b..02597e8ae4ac 100644
--- a/editors/semi/Makefile
+++ b/editors/semi/Makefile
@@ -57,7 +57,7 @@ RUN_DEPENDS+= flim-${EMACS_PORT_NAME}>0:editors/flim
BUILD_DEPENDS+= nkf:japanese/nkf
.endif
-MAKEINFO= makeinfo --no-split --no-validate
+MAKEINFO_FLAGS= --no-split --no-validate
MAKEINFO_EMACS= ${EMACS_CMD} -no-site-file -no-init-file -batch
MAKEINFO_EMACS_FLAGS= -e texinfo-format-buffer -f save-buffer
@@ -102,14 +102,14 @@ info-build:
for i in mime-ui-en.texi; do \
${MV} $${i} $${i}.jis ; \
${CAT} $${i}.jis | nkf -e > $${i} ; \
- ${MAKEINFO} $${i} || ${TRUE} ; \
+ ${MAKEINFO} ${MAKEINFO_FLAGS} $${i} || ${TRUE} ; \
done)
.if defined(EMACS_HAS_MULE) && (${EMACS_HAS_MULE} == "YES")
@(cd ${WRKSRC} ; \
for i in mime-ui-ja.texi; do \
${MV} $${i} $${i}.jis ; \
${CAT} $${i}.jis | nkf -e > $${i} ; \
- ${MAKEINFO} $${i} || ${TRUE} ; \
+ ${MAKEINFO} ${MAKEINFO_FLAGS} $${i} || ${TRUE} ; \
done)
.endif