guix-commits
[Top][All Lists]
Advanced

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

03/05: gnu: arpack-ng-openmpi: Fix build.


From: Ludovic Courtès
Subject: 03/05: gnu: arpack-ng-openmpi: Fix build.
Date: Fri, 11 May 2018 12:44:44 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 4f38754180bc880f6986b333b8e15e63709fb550
Author: Ludovic Courtès <address@hidden>
Date:   Fri May 11 17:16:12 2018 +0200

    gnu: arpack-ng-openmpi: Fix build.
    
    * gnu/packages/maths.scm (arpack-ng-openmpi)[arguments]: Inherit
    arguments from ARPACK-NG.  Previously the 'configure' phase would fail
    due to the lack of a 'configure' script.
---
 gnu/packages/maths.scm | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index edbbdff..6387f71 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -479,7 +479,10 @@ large scale eigenvalue problems.")
     (inputs
      `(("mpi" ,openmpi)
        ,@(package-inputs arpack-ng)))
-    (arguments `(#:configure-flags '("--enable-mpi")))
+    (arguments
+     (substitute-keyword-arguments (package-arguments arpack-ng)
+       ((#:configure-flags _ '())
+        ''("--enable-mpi"))))
     (synopsis "Fortran subroutines for solving eigenvalue problems with MPI")))
 
 (define-public lapack



reply via email to

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