mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +01:00
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:
parent
e3c9860ab9
commit
70a229aafe
1 changed files with 5 additions and 5 deletions
|
@ -399,8 +399,10 @@ (define-public snapraid
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list #:configure-flags
|
(list #:configure-flags
|
||||||
#~(list "--enable-valgrind"
|
;; XXX --enable-valgrind fails with ‘A must-be-redirected function
|
||||||
"--with-blkid")
|
;; 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
|
#:phases
|
||||||
#~(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-before 'bootstrap 'set-version
|
(add-before 'bootstrap 'set-version
|
||||||
|
@ -408,9 +410,7 @@ (define-public snapraid
|
||||||
(setenv "VERSION" #$version)
|
(setenv "VERSION" #$version)
|
||||||
(patch-shebang "autover.sh"))))))
|
(patch-shebang "autover.sh"))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list automake autoconf
|
(list automake autoconf))
|
||||||
;; For the tests.
|
|
||||||
valgrind))
|
|
||||||
(inputs
|
(inputs
|
||||||
(list `(,util-linux "lib"))) ; libblkid
|
(list `(,util-linux "lib"))) ; libblkid
|
||||||
(home-page "https://www.snapraid.it/")
|
(home-page "https://www.snapraid.it/")
|
||||||
|
|
Loading…
Reference in a new issue