Variable: makeinfo-run-command
makeinfo-run-command is a customizable variable defined in
makeinfo.el.gz.
Value
"makeinfo"
Documentation
Command used to run makeinfo subjob.
The name of the file is appended to this string, separated by a space.
This variable was added, or its default value changed, in Emacs 31.1.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/makeinfo.el.gz
(defcustom makeinfo-run-command
(cond ((executable-find "makeinfo") "makeinfo")
((executable-find "texi2any") "texi2any")
(t "makeinfo"))
"Command used to run `makeinfo' subjob.
The name of the file is appended to this string, separated by a space."
:type 'string
:version "31.1")