From d39b666913eaed253dc008c91616fefebb599600 Mon Sep 17 00:00:00 2001
From: alalazo <massimiliano.culpo@googlemail.com>
Date: Tue, 6 Sep 2016 11:21:26 +0200
Subject: [PATCH] plumed : avoid linking with libgslcblas

---
 var/spack/repos/builtin/packages/plumed/package.py | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/var/spack/repos/builtin/packages/plumed/package.py b/var/spack/repos/builtin/packages/plumed/package.py
index 79632abf38..60dfdf7405 100644
--- a/var/spack/repos/builtin/packages/plumed/package.py
+++ b/var/spack/repos/builtin/packages/plumed/package.py
@@ -66,6 +66,8 @@ class Plumed(Package):
     depends_on('mpi', when='+mpi')
     depends_on('gsl', when='+gsl')
 
+    depends_on('autoconf', type='build')
+
     # Dictionary mapping PLUMED versions to the patches it provides
     # interactively
     plumed_patches = {
@@ -98,6 +100,12 @@ def setup_dependent_package(self, module, ext_spec):
         module.plumed = Executable(join_path(self.spec.prefix.bin, 'plumed'))
 
     def install(self, spec, prefix):
+        # This part is needed to avoid linking with gsl cblas
+        # interface which will mask the cblas interface
+        # provided by optimized libraries due to linking order
+        filter_file('-lgslcblas', '', 'configure.ac')
+        autoreconf('-ivf')
+
         # From plumed docs :
         # Also consider that this is different with respect to what some other
         # configure script does in that variables such as MPICXX are
-- 
GitLab