branch: elpa/magit
commit 5b3f8cc7f1a0efe5f859d9c98d0c1817bd9a565f
Author: Jonas Bernoulli <[email protected]>
Commit: Jonas Bernoulli <[email protected]>

    make: Fix emacs-Q target
    
    Closes #5517.
---
 Makefile      | 8 ++------
 lisp/Makefile | 7 +++++++
 2 files changed, 9 insertions(+), 6 deletions(-)

diff --git a/Makefile b/Makefile
index b370717bc97..6ecb13aa304 100644
--- a/Makefile
+++ b/Makefile
@@ -121,12 +121,8 @@ test: lisp
 test-interactive:
        @$(MAKE) -C test test-interactive
 
-emacs-Q: clean-lisp
-       @$(MAKE) -C lisp autoloads
-       @$(EMACS_INTR) --debug-init --eval "(progn\
-       (setq debug-on-error t)\
-       (require 'magit-autoloads)\
-       (global-set-key \"\\C-xg\" 'magit-status))"
+emacs-Q:
+       @$(MAKE) -C lisp emacs-Q
 
 check-declare:
        @$(MAKE) -C lisp check-declare
diff --git a/lisp/Makefile b/lisp/Makefile
index a4f2ac3e464..a8a09f6b07d 100644
--- a/lisp/Makefile
+++ b/lisp/Makefile
@@ -101,6 +101,13 @@ install: lisp versionlib
 
 ## Debug
 
+emacs-Q: clean
+       @$(MAKE) autoloads
+       @$(EMACS_INTR) --debug-init --eval "(progn\
+       (setq debug-on-error t)\
+       (require 'magit-autoloads)\
+       (global-set-key \"\\C-xg\" 'magit-status))"
+
 check-declare:
        @printf "Checking function declarations\n"
        @$(EMACS_BATCH) -L $(TOP)../borg -L $(TOP)../forge/lisp \

Reply via email to