diff options
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/geo.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index 506180461d..460f810d3e 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -2609,7 +2609,6 @@ orienteering sport.") ("gdal" ,gdal) ("geos" ,geos) ("glu" ,glu) - ("lapack" ,lapack) ("libpng" ,libpng) ("libtiff" ,libtiff) ("mesa" ,mesa) @@ -2643,6 +2642,11 @@ orienteering sport.") (guix build python-build-system)) #:phases (modify-phases %standard-phases + (add-after 'unpack 'fix-lapack + (lambda _ + (substitute* "./configure" + (("-lblas") "-lopenblas") + (("-llapack") "-lopenblas")))) (replace 'configure (lambda* (#:key inputs outputs #:allow-other-keys) (let ((shell (search-input-file inputs "/bin/bash"))) |