Skip to content

Commit c9e7e8b

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

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

recipes/swiper.rcp

+11-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
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" ,(format "emacs=%s -L %s -L %s"
7+
el-get-emacs
8+
(concat (file-name-as-directory el-get-dir) "avy")
9+
(concat (file-name-as-directory el-get-dir) "hydra")) "compile")
10+
("makeinfo" "-o" "doc/ivy.info" "doc/ivy.texi"))
11+
:build/berkeley-unix `(("gmake" ,(format "emacs=%s -L %s -L %s"
12+
el-get-emacs
13+
(concat (file-name-as-directory el-get-dir) "avy")
14+
(concat (file-name-as-directory el-get-dir) "hydra")) "compile")
15+
("gmakeinfo" "-o" "doc/ivy.info" "doc/ivy.texi"))
1016
:info "doc/ivy.info")

0 commit comments

Comments
 (0)