Skip to content

Commit 04a4c20

Browse files
committed
Fix swiper build
hydra is a build-time dependency of swiper since abo-abo/swiper@40e017d and this patch follows that change in the recipe Also see abo-abo/swiper#3011
1 parent 887bedb commit 04a4c20

File tree

1 file changed

+15
-5
lines changed

1 file changed

+15
-5
lines changed

recipes/swiper.rcp

+15-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
11
(:name swiper
22
:description "Gives you an overview as you search for a regex."
33
:type github
4-
:depends (cl-lib avy)
4+
:depends (cl-lib avy hydra)
55
:pkgname "abo-abo/swiper"
6-
:build `(("make" ,(format "emacs=%s -L %s" el-get-emacs (concat (file-name-as-directory el-get-dir) "avy")) "compile")
7-
("makeinfo" "-o" "doc/ivy.info" "doc/ivy.texi"))
8-
:build/berkeley-unix `(("gmake" ,(format "emacs=%s -L %s" el-get-emacs (concat (file-name-as-directory el-get-dir) "avy")) "compile")
9-
("gmakeinfo" "-o" "doc/ivy.info" "doc/ivy.texi"))
6+
:build `(("make"
7+
,(format "emacs=%s -L %s -L %s"
8+
el-get-emacs
9+
(concat (file-name-as-directory el-get-dir) "avy")
10+
(concat (file-name-as-directory el-get-dir) "hydra"))
11+
"compile")
12+
("makeinfo" "-o" "doc/ivy.info" "doc/ivy.texi"))
13+
:build/berkeley-unix `(("gmake"
14+
,(format "emacs=%s -L %s -L %s"
15+
el-get-emacs
16+
(concat (file-name-as-directory el-get-dir) "avy")
17+
(concat (file-name-as-directory el-get-dir) "hydra"))
18+
"compile")
19+
("gmakeinfo" "-o" "doc/ivy.info" "doc/ivy.texi"))
1020
:info "doc/ivy.info")

0 commit comments

Comments
 (0)