From ae0acf6b6dce5a37fe15f9331843ebbf4560901e Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Sun, 5 Dec 2021 15:00:41 +0100 Subject: [PATCH] gnu: clapack: Remove trailing #T. * gnu/packages/maths.scm (clapack)[arguments]: Remove trailing #T from build phases. --- gnu/packages/maths.scm | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 3ff3c14bc8..7e3c4886dd 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -939,8 +939,7 @@ (define-public clapack (add-after 'unpack 'disable-broken-tests (lambda _ (substitute* "TESTING/CMakeLists.txt" - (("add_lapack_test.* xeigtstz\\)") "")) - #t)) + (("add_lapack_test.* xeigtstz\\)") "")))) (replace 'install (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) @@ -962,8 +961,7 @@ (define-public clapack "\\.h$"))) (copy-recursively (string-append "../clapack-" ,version "-CMAKE/INCLUDE") - (string-append out "/include")) - #t)))))) + (string-append out "/include")))))))) (home-page "https://www.netlib.org/clapack/") (synopsis "Numerical linear algebra library for C") (description