Skip to content

Commit 54c8722

Browse files
committed
Fix building of magit, transient and with-editor
They now use `EMACS` instead of `EMACSBIN`
1 parent 847901f commit 54c8722

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

recipes/magit.rcp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
;; handle compilation and autoloads on its own. Create an
1616
;; empty autoloads file because magit.el explicitly checks for
1717
;; a file of that name.
18-
:build `(("make" ,(format "EMACSBIN=%s" el-get-emacs) "info")
18+
:build `(("make" ,(format "EMACS=%s" el-get-emacs) "info")
1919
("touch" "lisp/magit-autoloads.el"))
20-
:build/berkeley-unix `(("gmake" ,(format "EMACSBIN=%s" el-get-emacs) "docs")
20+
:build/berkeley-unix `(("gmake" ,(format "EMACS=%s" el-get-emacs) "docs")
2121
("touch" "lisp/magit-autoloads.el"))
2222
;; assume windows lacks make and makeinfo
2323
:build/windows-nt (with-temp-file "lisp/magit-autoloads.el" nil))

recipes/transient.rcp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
:compile "lisp/"
1111
;; Use the Makefile to produce the info manual, el-get can
1212
;; handle compilation and autoloads on its own.
13-
:build `(("make" ,(format "EMACSBIN=%s" el-get-emacs) "info"))
14-
:build/berkeley-unix `(("gmake" ,(format "EMACSBIN=%s" el-get-emacs)
13+
:build `(("make" ,(format "EMACS=%s" el-get-emacs) "info"))
14+
:build/berkeley-unix `(("gmake" ,(format "EMACS=%s" el-get-emacs)
1515
"info"))
1616
;; Assume windows lacks a build environment.
1717
:build/windows-nt (with-temp-file "lisp/transient-autoloads.el" nil))

recipes/with-editor.rcp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
:compile "lisp/"
88
;; Use the Makefile to produce the info manual, el-get can
99
;; handle compilation and autoloads on its own.
10-
:build `(("make" ,(format "EMACSBIN=%s" el-get-emacs) "info"))
11-
:build/berkeley-unix `(("gmake" ,(format "EMACSBIN=%s" el-get-emacs)
10+
:build `(("make" ,(format "EMACS=%s" el-get-emacs) "info"))
11+
:build/berkeley-unix `(("gmake" ,(format "EMACS=%s" el-get-emacs)
1212
"info")))

0 commit comments

Comments
 (0)