guix-commits
[Top][All Lists]
Advanced

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

02/04: gnu: cmake: Disable checking for libarchive in tests.


From: Efraim Flashner
Subject: 02/04: gnu: cmake: Disable checking for libarchive in tests.
Date: Wed, 22 Jun 2016 03:52:39 +0000 (UTC)

efraim pushed a commit to branch core-updates
in repository guix.

commit 28b49c07915c6fd15674f7e26a876bd21ab14169
Author: Efraim Flashner <address@hidden>
Date:   Tue Jun 21 21:39:50 2016 +0300

    gnu: cmake: Disable checking for libarchive in tests.
    
    * gnu/packages/cmake.scm (cmake)[arguments]: Remove check on libarchive.
---
 gnu/packages/cmake.scm |   12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/cmake.scm b/gnu/packages/cmake.scm
index cac059e..0d45209 100644
--- a/gnu/packages/cmake.scm
+++ b/gnu/packages/cmake.scm
@@ -100,7 +100,17 @@ archive_write_set_format_shar.c"
                                ,(string-append
                                  "--docdir=share/doc/cmake-"
                                  (version-major+minor version))))))
-                   %standard-phases)))))
+                   (alist-cons-after
+                    'unpack 'remove-libarchive-version-test
+                    ; This test check has been failing consistantly over
+                    ; libarchive 3.2.x and cmake 3.4.x and 3.5.x so we
+                    ; disable it for now
+                    (lambda _
+                      (substitute*
+                        "Tests/CMakeOnly/AllFindModules/CMakeLists.txt"
+                        (("LibArchive") ""))
+                      #t)
+                   %standard-phases))))))
     (inputs
      `(("file"       ,file)
        ("curl"       ,curl)



reply via email to

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