mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: bristol: Do not check for JACK with ldd.
* gnu/packages/music.scm (bristol)[arguments]: Add build phase to disable runtime check for JACK.
This commit is contained in:
parent
6855b34754
commit
73124d3422
1 changed files with 7 additions and 0 deletions
|
@ -831,6 +831,13 @@ (define-public bristol
|
|||
(string-prefix? "i686" system)))
|
||||
(substitute* "bristol/Makefile.in"
|
||||
(("-msse -mfpmath=sse") "")))
|
||||
#t))
|
||||
;; We know that Bristol has been linked with JACK and we don't have
|
||||
;; ldd, so we can just skip this check.
|
||||
(add-after 'unpack 'do-not-grep-for-jack
|
||||
(lambda _
|
||||
(substitute* "bin/startBristol.in"
|
||||
(("ldd `which bristol` | grep jack") "echo guix"))
|
||||
#t)))))
|
||||
(inputs
|
||||
`(("alsa-lib" ,alsa-lib)
|
||||
|
|
Loading…
Reference in a new issue