Skip to content

Commit

Permalink
Fix swiper build (dimitri#2907)
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 authored and takaxp committed Jun 17, 2024
1 parent 1586292 commit 502c236
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 502c236

Please sign in to comment.