mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: guile-git: Skip test on powerpc-linux.
* gnu/packages/guile.scm (guile-git)[arguments]: When building on powerpc-linux add a phase to skip one test.
This commit is contained in:
parent
bbe42bb392
commit
276a767e2c
1 changed files with 10 additions and 1 deletions
|
@ -820,7 +820,16 @@ (define-public guile-git
|
|||
"guile-git-adjust-for-libgit2-1.2.0.patch"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:make-flags '("GUILE_AUTO_COMPILE=0"))) ; to prevent guild warnings
|
||||
`(#:make-flags '("GUILE_AUTO_COMPILE=0") ; to prevent guild warnings
|
||||
;; https://gitlab.com/guile-git/guile-git/-/issues/20
|
||||
,@(if (target-ppc32?)
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'skip-failing-test
|
||||
(lambda _
|
||||
(substitute* "Makefile.am"
|
||||
((".*tests/blob\\.scm.*") ""))))))
|
||||
'())))
|
||||
(native-inputs
|
||||
(list pkg-config autoconf automake texinfo guile-3.0 guile-bytestructures))
|
||||
(inputs
|
||||
|
|
Loading…
Reference in a new issue