Function: projectile--expand-configure-command
projectile--expand-configure-command is a byte-compiled function
defined in projectile.el.
Signature
(projectile--expand-configure-command PROJECT-TYPE)
Documentation
Default configure command for PROJECT-TYPE with the project root filled in.
The command may contain a %s placeholder which is replaced with
the project root.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile--expand-configure-command (project-type)
"Default configure command for PROJECT-TYPE with the project root filled in.
The command may contain a `%s' placeholder which is replaced with
the project root."
(when-let* ((cmd-format-string (projectile-default-configure-command project-type)))
(format cmd-format-string (projectile-project-root))))