[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
- branch master updated (2782cb3 -> 320c971), guix-commits, 2021/10/20
- 04/09: gnu: autofs: Update to 5.1.8., guix-commits, 2021/10/20
- 01/09: gnu: cdparanoia: Don't build in parallel.,
guix-commits <=
- 02/09: gnu: ethtool: Update to 5.14., guix-commits, 2021/10/20
- 06/09: gnu: font-gnu-unifont: Cross-compile binaries., guix-commits, 2021/10/20
- 05/09: gnu: font-gnu-unifont: Update to 14.0.01., guix-commits, 2021/10/20
- 07/09: gnu: flamp: Update to 2.2.07., guix-commits, 2021/10/20
- 09/09: gnu: dfu-util: Update to 0.11., guix-commits, 2021/10/20
- 08/09: gnu: eid-mw: Update to 5.0.28., guix-commits, 2021/10/20
- 03/09: gnu: genimage: Factorise substitutions., guix-commits, 2021/10/20