diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-01-24 11:35:32 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:44:42 +0200 |
commit | 70e875202048db6389888955f6b51b623fc1f644 (patch) | |
tree | 090b425968cf3091ca83e89cdd3977605869c0c7 /gnu/packages | |
parent | 86236e8ca426d56b2fdb2dd7a4a74bcf65db7eab (diff) | |
download | guix-70e875202048db6389888955f6b51b623fc1f644.tar guix-70e875202048db6389888955f6b51b623fc1f644.tar.gz |
gnu: libgpg-error: Always provide gpg-error-config.
* gnu/packages/gnupg.scm (libgpg-error)[arguments]: Always add a
configure-flag to enable gpg-error-config.
Change-Id: I40da8310d597529b4d355e72af9411ba76e434ca
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/gnupg.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm index 7e0dffd129..ada8d54346 100644 --- a/gnu/packages/gnupg.scm +++ b/gnu/packages/gnupg.scm @@ -148,6 +148,7 @@ (#t #t)))))))) ((system-hurd?) (list + #:configure-flags #~(list "--enable-install-gpg-error-config") #:phases #~(modify-phases %standard-phases (add-after 'unpack 'skip-tests @@ -157,7 +158,8 @@ (("(^| )main *\\(.*" all) (string-append all "{\n exit (77);//")))))))) (else - '()))) + (list + #:configure-flags #~(list "--enable-install-gpg-error-config"))))) (native-inputs (list gettext-minimal)) (home-page "https://gnupg.org") (synopsis "Library of error values for GnuPG components") |