From e8cca905c31c665e93345646ce3c732cb9da4fef Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Sun, 30 Apr 2023 23:46:00 +0100 Subject: [PATCH] fix(tools): resolve require issues makefile-executor setup --- modules/tools/siren-makefile-executor.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/tools/siren-makefile-executor.el b/modules/tools/siren-makefile-executor.el index d5a29f2..c494f52 100644 --- a/modules/tools/siren-makefile-executor.el +++ b/modules/tools/siren-makefile-executor.el @@ -6,7 +6,7 @@ ;;; Code: -(require 'helm-make) +(require 'siren-helm-make) (use-package makefile-executor :hook @@ -18,6 +18,7 @@ :config ;; Replace get targets function with that from helm-make as it faster and more ;; efficient by not needing to write any temporary files to disk. + (require 'helm-make) (defalias 'makefile-executor-get-targets 'helm--make-target-list-qp)) (provide 'siren-makefile-executor)