mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: icu4c-70: Fix gexp in builder script for riscv64.
As phases from icu4c is a gexp. * gnu/packages/icu4c.scm (icu4c-70)[arguments]: Use gexps.
This commit is contained in:
parent
a795a02a9d
commit
b1e9ae7f0e
1 changed files with 9 additions and 9 deletions
|
@ -124,15 +124,15 @@ (define-public icu4c-70
|
|||
(if (target-riscv64?)
|
||||
(substitute-keyword-arguments (package-arguments icu4c)
|
||||
((#:phases phases)
|
||||
`(modify-phases ,phases
|
||||
(replace 'disable-failing-test
|
||||
;; It is unknown why these tests are failing.
|
||||
(lambda _
|
||||
(substitute* "source/test/cintltst/ucptrietest.c"
|
||||
((".*addTest.*") ""))
|
||||
(substitute* "source/test/intltest/numbertest_api.cpp"
|
||||
(("(TESTCASE_AUTO\\(unitUsage\\));" all)
|
||||
(string-append "//" all))))))))
|
||||
#~(modify-phases #$phases
|
||||
(replace 'disable-failing-test
|
||||
;; It is unknown why these tests are failing.
|
||||
(lambda _
|
||||
(substitute* "source/test/cintltst/ucptrietest.c"
|
||||
((".*addTest.*") ""))
|
||||
(substitute* "source/test/intltest/numbertest_api.cpp"
|
||||
(("(TESTCASE_AUTO\\(unitUsage\\));" all)
|
||||
(string-append "//" all))))))))
|
||||
(package-arguments icu4c)))))
|
||||
|
||||
(define-public icu4c-69
|
||||
|
|
Loading…
Reference in a new issue