AutotoolsPackage: minor improvements (#2859)
* AutotoolsPackage: added configure_directory to permit build out of source. The configure script executable is now invoked with an absolute path. Modified a few packages accordingly. * build_systems: functions returning directories are now properties * build_systems: fixed issues with tcl and tk * AutotoolsPackage: reworked recipe for autoreconf
This commit is contained in:

committed by
Todd Gamblin

parent
3b2124af6a
commit
81a5146b1d
@@ -51,8 +51,8 @@ class PyMeep(PythonPackage):
|
||||
|
||||
phases = ['clean', 'build_ext', 'install', 'bdist']
|
||||
|
||||
def setup_file(self, spec, prefix):
|
||||
return 'setup-mpi.py' if '+mpi' in spec else 'setup.py'
|
||||
def setup_file(self):
|
||||
return 'setup-mpi.py' if '+mpi' in self.spec else 'setup.py'
|
||||
|
||||
def common_args(self, spec, prefix):
|
||||
include_dirs = [
|
||||
|
Reference in New Issue
Block a user