Variable: package-vc-make-program

package-vc-make-program is a customizable variable defined in package-vc.el.gz.

Value

nil

Documentation

Name of the GNU "make" executable on the system.

If the name of the GNU "make" executable on the current system is neither "make" nor "gmake" then you will need to customize this variable in order to build some VC packages.

This variable was added, or its default value changed, in Emacs 31.1.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/package-vc.el.gz
(defcustom package-vc-make-program nil
  "Name of the GNU \"make\" executable on the system.

If the name of the GNU \"make\" executable on the current system is
neither \"make\" nor \"gmake\" then you will need to customize this
variable in order to build some VC packages."
  :type '(choice (const :tag "Auto-detect" nil)
                 (string :tag "Name of GNU 'make' on current system"))
  :version "31.1")