diff options
author | George Hartzell <hartzell@alerce.com> | 2016-08-05 18:11:05 -0400 |
---|---|---|
committer | George Hartzell <hartzell@alerce.com> | 2016-08-06 16:27:40 -0400 |
commit | f800708ef30f70a8b3f251ca267dee8afc2395d5 (patch) | |
tree | 79f5609e98a540f4eae702cc50e80e0dc30d0c06 | |
parent | 6a62a6b693f020bb221902c9049afdb947492708 (diff) | |
download | spack-f800708ef30f70a8b3f251ca267dee8afc2395d5.tar.gz spack-f800708ef30f70a8b3f251ca267dee8afc2395d5.tar.bz2 spack-f800708ef30f70a8b3f251ca267dee8afc2395d5.tar.xz spack-f800708ef30f70a8b3f251ca267dee8afc2395d5.zip |
Switch to using *std_cmake_args
4 files changed, 4 insertions, 7 deletions
diff --git a/var/spack/repos/builtin/packages/bpp-core/package.py b/var/spack/repos/builtin/packages/bpp-core/package.py index 987fd964b9..40360a03b3 100644 --- a/var/spack/repos/builtin/packages/bpp-core/package.py +++ b/var/spack/repos/builtin/packages/bpp-core/package.py @@ -36,7 +36,6 @@ class BppCore(Package): depends_on('cmake') def install(self, spec, prefix): - cmake('-DCMAKE_INSTALL_PREFIX=%s' % prefix, - '-DBUILD_TESTING=FALSE', '.') + cmake('-DBUILD_TESTING=FALSE', '.', *std_cmake_args) make() make('install') diff --git a/var/spack/repos/builtin/packages/bpp-phyl/package.py b/var/spack/repos/builtin/packages/bpp-phyl/package.py index c50f71385a..62db8d5545 100644 --- a/var/spack/repos/builtin/packages/bpp-phyl/package.py +++ b/var/spack/repos/builtin/packages/bpp-phyl/package.py @@ -38,7 +38,6 @@ class BppPhyl(Package): depends_on('bpp-seq') def install(self, spec, prefix): - cmake('-DCMAKE_INSTALL_PREFIX=%s' % prefix, - '-DBUILD_TESTING=FALSE', '.') + cmake('-DBUILD_TESTING=FALSE', '.', *std_cmake_args) make() make('install') diff --git a/var/spack/repos/builtin/packages/bpp-seq/package.py b/var/spack/repos/builtin/packages/bpp-seq/package.py index dff26b3308..7132c668b3 100644 --- a/var/spack/repos/builtin/packages/bpp-seq/package.py +++ b/var/spack/repos/builtin/packages/bpp-seq/package.py @@ -37,7 +37,6 @@ class BppSeq(Package): depends_on('bpp-core') def install(self, spec, prefix): - cmake('-DCMAKE_INSTALL_PREFIX=%s' % prefix, - '-DBUILD_TESTING=FALSE', '.') + cmake('-DBUILD_TESTING=FALSE', '.', *std_cmake_args) make() make('install') diff --git a/var/spack/repos/builtin/packages/bpp-suite/package.py b/var/spack/repos/builtin/packages/bpp-suite/package.py index 872c72d498..41e90e375d 100644 --- a/var/spack/repos/builtin/packages/bpp-suite/package.py +++ b/var/spack/repos/builtin/packages/bpp-suite/package.py @@ -42,6 +42,6 @@ class BppSuite(Package): depends_on('bpp-phyl') def install(self, spec, prefix): - cmake('-DCMAKE_INSTALL_PREFIX=%s' % prefix, '.') + cmake('.', *std_cmake_args) make() make('install') |