diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-10-16 02:00:03 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-10-16 02:00:00 +0200 |
commit | b1aedf6ab47bafd24514d6b9cde99c265789ebe5 (patch) | |
tree | 78d03860dee718aae0220fa468843dfe8d2a153f /gnu/packages/xml.scm | |
parent | dc6186f7ebe6e61b28912352752c1c1a629965ba (diff) |
gnu: minixml: Use G-expressions.
* gnu/packages/xml.scm (minixml)[arguments]:
Rewrite as G-expressions.
Diffstat (limited to 'gnu/packages/xml.scm')
-rw-r--r-- | gnu/packages/xml.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index 18a482ac7b..6ea2ead555 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -1215,10 +1215,10 @@ Libxml2).") "0cncvb0xhbq2i7rszj6pmcs3b97f0a17j081z0cmcfrrzv8kwrhc")))) (build-system gnu-build-system) (arguments - `(#:configure-flags - (list (string-append "LDFLAGS=-Wl,-rpath=" - (assoc-ref %outputs "out") "/lib")) - #:tests? #f)) ; tests are run during build + (list + #:configure-flags + #~(list (string-append "LDFLAGS=-Wl,-rpath=" #$output "/lib")) + #:tests? #f)) ; tests are run during build (home-page "https://www.msweet.org/mxml/") (synopsis "Small XML parsing library") (description |