[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: r: Drop input openblas.
From: |
Andreas Enge |
Subject: |
01/01: gnu: r: Drop input openblas. |
Date: |
Fri, 05 Feb 2016 19:53:04 +0000 |
andreas pushed a commit to branch master
in repository guix.
commit 95b754a17ad3192086a9e8ce514e25d980039d50
Author: Andreas Enge <address@hidden>
Date: Fri Feb 5 20:51:39 2016 +0100
gnu: r: Drop input openblas.
* gnu/packages/statistics.scm (r)[inputs]: Drop openblas.
[arguments]: Adapt configure flags. This makes the build succeed
on armhf-linux.
---
gnu/packages/statistics.scm | 7 +++----
1 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 6466af1..7694816 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -1,6 +1,7 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2015, 2016 Ricardo Wurmus <address@hidden>
;;; Copyright © 2015 Vicente Vera Parra <address@hidden>
+;;; Copyright ©2016 Andreas Enge <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -85,8 +86,7 @@
(add-after 'build 'install-info
(lambda _ (zero? (system* "make" "install-info")))))
#:configure-flags
- '("--with-blas=openblas"
- "--with-lapack"
+ '("--with-lapack"
"--with-cairo"
"--with-libpng"
"--with-jpeglib"
@@ -117,8 +117,7 @@
("which" ,which) ; for tests/Examples/base-Ex.R
("xz" ,xz)))
(inputs
- `(("openblas" ,openblas)
- ("cairo" ,cairo)
+ `(("cairo" ,cairo)
("gfortran" ,gfortran)
("icu4c" ,icu4c)
("lapack" ,lapack)