summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/autoconf/package.py
diff options
context:
space:
mode:
authorMassimiliano Culpo <massimiliano.culpo@googlemail.com>2017-01-26 11:27:15 +0100
committerTodd Gamblin <tgamblin@llnl.gov>2017-01-26 02:27:15 -0800
commit81a5146b1df1f69172c0f76bc3dbe469f4e366f9 (patch)
treeb1f369a4b48c09fb90c499afd9856739ccf027ff /var/spack/repos/builtin/packages/autoconf/package.py
parent3b2124af6a861273df5bc19345f2a03e8c9db0e1 (diff)
downloadspack-81a5146b1df1f69172c0f76bc3dbe469f4e366f9.tar.gz
spack-81a5146b1df1f69172c0f76bc3dbe469f4e366f9.tar.bz2
spack-81a5146b1df1f69172c0f76bc3dbe469f4e366f9.tar.xz
spack-81a5146b1df1f69172c0f76bc3dbe469f4e366f9.zip
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
Diffstat (limited to 'var/spack/repos/builtin/packages/autoconf/package.py')
-rw-r--r--var/spack/repos/builtin/packages/autoconf/package.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/autoconf/package.py b/var/spack/repos/builtin/packages/autoconf/package.py
index d812350ae8..3dcf8f36b5 100644
--- a/var/spack/repos/builtin/packages/autoconf/package.py
+++ b/var/spack/repos/builtin/packages/autoconf/package.py
@@ -38,6 +38,8 @@ class Autoconf(AutotoolsPackage):
depends_on('m4@1.4.6:', type='build')
+ build_directory = 'spack-build'
+
def _make_executable(self, name):
return Executable(join_path(self.prefix.bin, name))