summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
Diffstat (limited to 'var')
-rw-r--r--var/spack/packages/scotch/package.py10
1 files changed, 3 insertions, 7 deletions
diff --git a/var/spack/packages/scotch/package.py b/var/spack/packages/scotch/package.py
index f92fa915f9..8229ed8686 100644
--- a/var/spack/packages/scotch/package.py
+++ b/var/spack/packages/scotch/package.py
@@ -72,8 +72,7 @@ class Scotch(Package):
makefile_inc.append('LDFLAGS = %s' % ' '.join(ldflags))
-
- def write_make_inc(self):
+ def patch(self):
makefile_inc = []
defines = [
'-DCOMMON_RANDOM_FIXED_SEED',
@@ -101,12 +100,9 @@ class Scotch(Package):
''
])
- with open('Makefile.inc', 'w') as fh:
- fh.write('\n'.join(makefile_inc))
-
- def patch(self):
with working_dir('src'):
- self.write_make_inc()
+ with open('Makefile.inc', 'w') as fh:
+ fh.write('\n'.join(makefile_inc))
def install(self, spec, prefix):
targets = ['scotch']