guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

25/145: gnu: libproxy: Remove target condition from check phase.


From: guix-commits
Subject: 25/145: gnu: libproxy: Remove target condition from check phase.
Date: Mon, 10 Jan 2022 11:44:03 -0500 (EST)

apteryx pushed a commit to branch version-1.4.0
in repository guix.

commit 45747f7a4333d165ce0d7ed9d36fe3160e849731
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Fri Dec 17 16:19:32 2021 -0500

    gnu: libproxy: Remove target condition from check phase.
    
    * gnu/packages/networking.scm (libproxy)[phases]{check}: Remove target 
condition.
---
 gnu/packages/networking.scm | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index bd9050583d..2dbdc7d9b5 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]