Function: projectile-configure-command

projectile-configure-command is a byte-compiled function defined in projectile.el.

Signature

(projectile-configure-command COMPILE-DIR)

Documentation

Retrieve the configure command for COMPILE-DIR.

Checks projectile-configure-cmd-map for the last configure command that was invoked on the project, then projectile-project-configure-cmd supplied via .dir-locals.el and finally the default configure command for a project of that type.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile-configure-command (compile-dir)
  "Retrieve the configure command for COMPILE-DIR.
Checks `projectile-configure-cmd-map' for the last configure command
that was invoked on the project, then `projectile-project-configure-cmd'
supplied via .dir-locals.el and finally the default configure command
for a project of that type."
  (projectile--phase-command 'configure compile-dir))