mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: liboauth: Use C unicode locale in tests.
* gnu/packages/web.scm (liboauth): Use C unicode locale in tests. Change-Id: I1ff7da64912fbba5ae427f77b912dd9dff4e239a
This commit is contained in:
parent
c71cd18ea2
commit
ef3bac711b
1 changed files with 10 additions and 1 deletions
|
@ -2168,7 +2168,16 @@ changes, and much more.")
|
||||||
(base32
|
(base32
|
||||||
"07w1aq8y8wld43wmbk2q8134p3bfkp2vma78mmsfgw2jn1bh3xhd"))))
|
"07w1aq8y8wld43wmbk2q8134p3bfkp2vma78mmsfgw2jn1bh3xhd"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments '(#:configure-flags '("--enable-nss")))
|
(arguments
|
||||||
|
(list
|
||||||
|
#:configure-flags ''("--enable-nss")
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'use-C-unicode-locale
|
||||||
|
(lambda _
|
||||||
|
(substitute* "tests/commontest.c"
|
||||||
|
(("en_US\\.UTF-8")
|
||||||
|
"C.UTF-8")))))))
|
||||||
(native-inputs (list pkg-config))
|
(native-inputs (list pkg-config))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list curl nss))
|
(list curl nss))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue