diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2017-07-28 21:45:20 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2017-07-28 21:45:20 +0000 |
commit | f872930d0e52c8802d4085a53fd91d3af6e0ddad (patch) | |
tree | a79f71211dc0ed6f08a805235e59f1fc3946e774 /editors/semi | |
parent | 0f17cf99be7bb6defa0b0a6f7788fad50febe6fb (diff) | |
download | ports-f872930d0e52c8802d4085a53fd91d3af6e0ddad.tar.gz ports-f872930d0e52c8802d4085a53fd91d3af6e0ddad.zip |
Notes
Diffstat (limited to 'editors/semi')
-rw-r--r-- | editors/semi/Makefile | 6 |
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 |