guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: gnutls: Don't embed a phase inside another p


From: guix-commits
Subject: branch master updated: gnu: gnutls: Don't embed a phase inside another phase.
Date: Tue, 25 Apr 2023 16:35:54 -0400

This is an automated email from the git hooks/post-receive script.

efraim pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new e287a0e402 gnu: gnutls: Don't embed a phase inside another phase.
e287a0e402 is described below

commit e287a0e402ee15eefa80c2804e487025507fe3b1
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Tue Apr 25 23:32:17 2023 +0300

    gnu: gnutls: Don't embed a phase inside another phase.
    
    * gnu/packages/tls.scm (gnutls)[arguments]: Adjust powerpc-linux phase
    'increase-test-timeout to not be embedded inside another phase.
---
 gnu/packages/tls.scm | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm
index a01ab6a119..6d7cff41b0 100644
--- a/gnu/packages/tls.scm
+++ b/gnu/packages/tls.scm
@@ -252,14 +252,14 @@ living in the same process.")
                  (lambda _
                    (substitute* "tests/fastopen.sh"
                      (("^unset RETCODE")
-                      "exit 77\n"))     ;skip
-                   #$@(if (target-ppc32?)
-                          ;; https://gitlab.com/gnutls/gnutls/-/issues/1354
-                          ;; Extend the test timeout from the default of 20 * 
1000
-                          #~((add-after 'unpack 'increase-test-timeout
-                               (lambda _
-                                 (setenv "GNUTLS_TEST_TIMEOUT" "60000"))))
-                          #~())))
+                      "exit 77\n"))))   ;skip
+               #$@(if (target-ppc32?)
+                      ;; https://gitlab.com/gnutls/gnutls/-/issues/1354
+                      ;; Extend the test timeout from the default of 20 * 1000
+                      #~((add-after 'unpack 'increase-test-timeout
+                           (lambda _
+                             (setenv "GNUTLS_TEST_TIMEOUT" "60000"))))
+                      #~())
                (add-after 'install 'move-doc
                  (lambda* (#:key outputs #:allow-other-keys)
                    ;; Copy the 4.1 MiB of section 3 man pages to "doc".



reply via email to

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