guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/09: gnu: cdparanoia: Don't build in parallel.


From: guix-commits
Subject: 01/09: gnu: cdparanoia: Don't build in parallel.
Date: Wed, 20 Oct 2021 19:57:39 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 49176f0e4684a9b50cf75b4a0d1e9c3edb0074d2
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Thu Oct 21 00:39:23 2021 +0200

    gnu: cdparanoia: Don't build in parallel.
    
    * gnu/packages/cdrom.scm (cdparanoia)[arguments]:
    Disable #:parallel-build?.
    
    Reported by Maxim Cournoyer <maxim.cournoyer@gmail.com>
---
 gnu/packages/cdrom.scm | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/cdrom.scm b/gnu/packages/cdrom.scm
index 443d745..66a259f 100644
--- a/gnu/packages/cdrom.scm
+++ b/gnu/packages/cdrom.scm
@@ -231,13 +231,15 @@ files.")
               '(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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]