mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-15 23:50:44 +00:00
7a96c39f50
o Change port's texinfo format procedure more verbose one. This also fixes the build problem on 4-current. PR: 16357 Submitted by: maintainer
17 lines
411 B
Makefile
17 lines
411 B
Makefile
;;; -*- Emacs-Lisp -*-
|
|
;;; PORT_TEXIFMT.MK --- for texinfo-format
|
|
;;; Code:
|
|
|
|
(defun port-texinfo-format ()
|
|
(let (obuf)
|
|
(find-file (expand-file-name PORT-TEXI))
|
|
(setq obuf (current-buffer))
|
|
(require 'texinfmt)
|
|
(texinfo-format-buffer t)
|
|
(set-buffer-file-coding-system 'iso-2022-jp)
|
|
(save-buffer)
|
|
(kill-buffer (current-buffer))
|
|
(kill-buffer obuf)))
|
|
|
|
;;; PORT_TEXIFMT.MK ends here
|