From a0a58d4076ed6efb40890941bf9cac2109b8a36a Mon Sep 17 00:00:00 2001 From: miller86 Date: Mon, 19 Jun 2017 15:43:15 -0700 Subject: [PATCH] reverting inadvertent change on develop --- .../repos/builtin/packages/veclibfort/package.py | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/var/spack/repos/builtin/packages/veclibfort/package.py b/var/spack/repos/builtin/packages/veclibfort/package.py index c02299d97c4..4a056803ca4 100644 --- a/var/spack/repos/builtin/packages/veclibfort/package.py +++ b/var/spack/repos/builtin/packages/veclibfort/package.py @@ -55,16 +55,8 @@ def install(self, spec, prefix): if sys.platform != 'darwin': raise InstallError('vecLibFort can be installed on macOS only') - filter_file(r'^PREFIX=.*', '', 'Makefile') - - make_args = [] - - if spec.satisfies('%gcc@6:'): - make_args += ['CFLAGS=-flax-vector-conversions'] - - make_args += ['PREFIX=%s' % prefix, 'install'] - - make(*make_args) + make('all') + make('PREFIX=%s' % prefix, 'install') # test fc = which('fc')