Variable: org-texinfo-info-process
org-texinfo-info-process is a customizable variable defined in
ox-texinfo.el.gz.
Value
("makeinfo --no-split %f")
Documentation
Commands to process a Texinfo file to an INFO file.
This is a list of strings, each of them will be given to the shell as a command. %f in the command will be replaced by the relative file name, %F by the absolute file name, %b by the file base name (i.e. without directory and extension parts), %o by the base directory of the file and %O by the absolute file name of the output file.
Alternatively, this may be a Lisp function that does the processing, This function should accept the file name as its single argument.
This variable was added, or its default value changed, in Org version
9.1.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-texinfo.el.gz
;;;; Compilation
(defcustom org-texinfo-info-process '("makeinfo --no-split %f")
"Commands to process a Texinfo file to an INFO file.
This is a list of strings, each of them will be given to the
shell as a command. %f in the command will be replaced by the
relative file name, %F by the absolute file name, %b by the file
base name (i.e. without directory and extension parts), %o by the
base directory of the file and %O by the absolute file name of
the output file.
Alternatively, this may be a Lisp function that does the processing,
This function should accept the file name as its single argument."
:version "26.1"
:package-version '(Org . "9.1")
:type '(choice
(repeat :tag "Shell command sequence"
(string :tag "Shell command"))
(function)))