diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-12-17 16:19:32 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-01-10 11:44:32 -0500 |
commit | 2fb54e94c3091a69c59fdd1b68b849b28188e329 (patch) | |
tree | 82a6576c49337fc16ec5bc1d62d22886e1e9088e /gnu | |
parent | 0fcfa1cdc0ce602e97955f9b8d5112797b37b481 (diff) | |
download | guix-2fb54e94c3091a69c59fdd1b68b849b28188e329.tar.gz |
gnu: libproxy: Remove target condition from check phase.
* gnu/packages/networking.scm (libproxy)[phases]{check}: Remove target condition.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/networking.scm | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index e4438d4a12..3ac01f43ea 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -2247,13 +2247,9 @@ sockets in Perl.") `(#:phases (modify-phases %standard-phases (replace 'check - ;; TODO(core-updates): Make this unconditional. - ,(if (%current-target-system) - '(lambda* (#:key tests? #:allow-other-keys) - (when tests? - (invoke "ctest" "-E" "url-test"))) - '(lambda _ - (invoke "ctest" "-E" "url-test"))))))) + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (invoke "ctest" "-E" "url-test"))))))) (synopsis "Library providing automatic proxy configuration management") (description "Libproxy handles the details of HTTP/HTTPS proxy configuration for applications across all scenarios. Applications using |