branch: elpa/projectile
commit d249a8d3e07364776087df8f720e67007fb01b31
Author: Bozhidar Batsov <[email protected]>
Commit: Bozhidar Batsov <[email protected]>

    Remove unused compile-dir arg from configure-command format call
    
    The format call passed both project-root and compile-dir, but no
    project type's configure command uses two %s placeholders (meson
    uses one for the project root). The extra argument was silently
    ignored.
---
 projectile.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/projectile.el b/projectile.el
index efd0bc0d28..5b2c84e1a2 100644
--- a/projectile.el
+++ b/projectile.el
@@ -5311,7 +5311,7 @@ project of that type"
       projectile-project-configure-cmd
       (let ((cmd-format-string (projectile-default-configure-command 
(projectile-project-type))))
         (when cmd-format-string
-          (format cmd-format-string (projectile-project-root) compile-dir)))))
+          (format cmd-format-string (projectile-project-root))))))
 
 (defun projectile-compilation-buffer-name (compilation-mode)
   "Meant to be used for `compilation-buffer-name-function`.

Reply via email to