gnu: snapraid: ‘Fix’ build.

* gnu/packages/backup.scm (snapraid)[arguments]:
Remove "--enable-valgrind" from #:configure-flags.
[native-inputs]: Remove valgrind.
This commit is contained in:
Tobias Geerinckx-Rice 2022-01-06 00:58:22 +01:00
parent e3c9860ab9
commit 70a229aafe
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -399,8 +399,10 @@ (define-public snapraid
(build-system gnu-build-system)
(arguments
(list #:configure-flags
#~(list "--enable-valgrind"
"--with-blkid")
;; XXX --enable-valgrind fails with A must-be-redirected function
;; whose name matches the pattern: strlen in an object with soname
;; matching: ld-linux-x86-64.so.2 was not found […]; used to work.
#~(list "--with-blkid")
#:phases
#~(modify-phases %standard-phases
(add-before 'bootstrap 'set-version
@ -408,9 +410,7 @@ (define-public snapraid
(setenv "VERSION" #$version)
(patch-shebang "autover.sh"))))))
(native-inputs
(list automake autoconf
;; For the tests.
valgrind))
(list automake autoconf))
(inputs
(list `(,util-linux "lib"))) ; libblkid
(home-page "https://www.snapraid.it/")