jpoiret pushed a commit to branch core-updates-glibc-2.39 in repository guix.
commit e95eb0e135ca418905afa6fdb492401c0c421f62 Author: Josselin Poiret <[email protected]> AuthorDate: Sun Feb 18 12:03:22 2024 +0100 gnu: cryptsetup: G-Expify static-library. * gnu/packages/cryptsetup.scm (static-library): G-Expify it. Change-Id: I3123cab24b08acdb5a28e0052e9a9663d00fd564 --- gnu/packages/cryptsetup.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/cryptsetup.scm b/gnu/packages/cryptsetup.scm index 8ff649bccc..6765fed726 100644 --- a/gnu/packages/cryptsetup.scm +++ b/gnu/packages/cryptsetup.scm @@ -107,9 +107,9 @@ files). This assumes LIBRARY uses Libtool." (name (string-append (package-name library) "-static")) (arguments (substitute-keyword-arguments (package-arguments library) - ((#:configure-flags flags ''()) - `(append '("--disable-shared" "--enable-static") - ,flags)))))) + ((#:configure-flags flags #~'()) + #~(append '("--disable-shared" "--enable-static") + #$flags)))))) (define-public cryptsetup-static ;; Stripped-down statically-linked 'cryptsetup' command for use in initrds.
