diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-21 08:21:13 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-21 08:29:00 -0400 |
commit | 555e3a951f787ba22795c3c84186df13430eab0d (patch) | |
tree | 79d9a5c86e5a1a1877a75247f4649bfd2febcdb0 /gnu | |
parent | 4065d9dfd592255a4ae61e72f9315ba7fcb9c90b (diff) | |
download | guix-555e3a951f787ba22795c3c84186df13430eab0d.tar.gz guix-555e3a951f787ba22795c3c84186df13430eab0d.zip |
gnu: opensp: Fix build.
This is a follow up commit to b84d0b81b2.
* gnu/packages/xml.scm (opensp) [arguments]: Properly quote.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/xml.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index e9e48d01a7..2bc4f66c01 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -1757,7 +1757,7 @@ modular implementation of XML-RPC for C and C++.") ;; Skip the tests that are known to fail (see: ;; https://sourceforge.net/p/openjade/mailman/message/6182316/) - #:make-flags '("TESTS_THAT_FAIL=") + #:make-flags #~(list "TESTS_THAT_FAIL=") #:phases #~(modify-phases %standard-phases (add-after 'unpack 'delete-configure |