Skip to content

Commit c8a4744

Browse files
committed
fix: package-build now require GNU Elpa
1 parent 682e8d3 commit c8a4744

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lisp/_prepare.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,7 @@ scope of the dependencies (it's either `production' or `development')."
552552
(eask-defvc< 27 (eask-pkg-init)) ; XXX: remove this after we drop 26.x
553553
(when eask-depends-on-recipe-p
554554
(eask-log "Installing required external packages...")
555-
(eask-with-archives "melpa"
555+
(eask-with-archives '("gnu" "melpa")
556556
(eask-package-install 'package-build))
557557
(eask-with-progress
558558
"Building temporary archives (this may take a while)... "

lisp/core/package.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Argument VERSION is a string represent the version number of this package."
7474
(ignore-errors (make-directory eask-dist-path t))
7575

7676
(eask-defvc< 27 (eask-pkg-init)) ; XXX: remove this after we drop 26.x
77-
(eask-with-archives "melpa"
77+
(eask-with-archives '("gnu" "melpa")
7878
(eask-package-install 'package-build))
7979
(eask-load "extern/package-build") ; override
8080

0 commit comments

Comments
 (0)