mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: cdparanoia: Don't build in parallel.
* gnu/packages/cdrom.scm (cdparanoia)[arguments]: Disable #:parallel-build?. Reported by Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
parent
2782cb38a3
commit
49176f0e46
1 changed files with 5 additions and 3 deletions
|
@ -231,13 +231,15 @@ (define-public cdparanoia
|
|||
'(begin
|
||||
;; Make libraries respect LDFLAGS.
|
||||
(substitute* '("paranoia/Makefile.in" "interface/Makefile.in")
|
||||
(("-Wl,-soname") "$(LDFLAGS) -Wl,-soname"))
|
||||
#t))))
|
||||
(("-Wl,-soname") "$(LDFLAGS) -Wl,-soname"))))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; there is no check target
|
||||
#:configure-flags ; Add $libdir to the RUNPATH of all the executables.
|
||||
(list (string-append "LDFLAGS=-Wl,-rpath=" %output "/lib"))))
|
||||
(list (string-append "LDFLAGS=-Wl,-rpath=" %output "/lib"))
|
||||
;; Building in parallel is flaky: “ld: […]/cachetest.c:393: undefined
|
||||
;; reference to `paranoia_free'”.
|
||||
#:parallel-build? #f))
|
||||
(home-page "https://www.xiph.org/paranoia/")
|
||||
(synopsis "Audio CD reading utility")
|
||||
(description "Cdparanoia retrieves audio tracks from CDDA capable CDROM
|
||||
|
|
Loading…
Reference in a new issue