Skip to content

Commit

Permalink
Fix swiper build
Browse files Browse the repository at this point in the history
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
  • Loading branch information
pasja committed Jun 22, 2023
1 parent 887bedb commit 04a4c20
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions recipes/swiper.rcp
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
(:name swiper
:description "Gives you an overview as you search for a regex."
:type github
:depends (cl-lib avy)
:depends (cl-lib avy hydra)
:pkgname "abo-abo/swiper"
:build `(("make" ,(format "emacs=%s -L %s" el-get-emacs (concat (file-name-as-directory el-get-dir) "avy")) "compile")
("makeinfo" "-o" "doc/ivy.info" "doc/ivy.texi"))
:build/berkeley-unix `(("gmake" ,(format "emacs=%s -L %s" el-get-emacs (concat (file-name-as-directory el-get-dir) "avy")) "compile")
("gmakeinfo" "-o" "doc/ivy.info" "doc/ivy.texi"))
:build `(("make"
,(format "emacs=%s -L %s -L %s"
el-get-emacs
(concat (file-name-as-directory el-get-dir) "avy")
(concat (file-name-as-directory el-get-dir) "hydra"))
"compile")
("makeinfo" "-o" "doc/ivy.info" "doc/ivy.texi"))
:build/berkeley-unix `(("gmake"
,(format "emacs=%s -L %s -L %s"
el-get-emacs
(concat (file-name-as-directory el-get-dir) "avy")
(concat (file-name-as-directory el-get-dir) "hydra"))
"compile")
("gmakeinfo" "-o" "doc/ivy.info" "doc/ivy.texi"))
:info "doc/ivy.info")

0 comments on commit 04a4c20

Please sign in to comment.