qa : modifying 2 packages and a framework file just for the sake of it

This commit is contained in:
alalazo 2016-05-10 18:33:07 +02:00
parent 8fec824484
commit 979b53cab6
3 changed files with 6 additions and 1 deletions

View File

@ -44,6 +44,7 @@ def __init__(self):
"Could not determine sys_type for this machine.")
def get_sys_type_from_spack_globals():
"""Return the SYS_TYPE from spack globals, or None if it isn't set."""
if not hasattr(spack, "sys_type"):

View File

@ -23,8 +23,10 @@ class Imagemagick(Package):
version('6.8.9-10', 'aa050bf9785e571c956c111377bbf57c',
url="http://sourceforge.net/projects/imagemagick/files/old-sources/6.x/6.8/ImageMagick-6.8.9-10.tar.gz/download")
depends_on('libtool')
depends_on('jpeg')
depends_on('libtool')
depends_on('libpng')
depends_on('freetype')
depends_on('fontconfig')

View File

@ -19,6 +19,8 @@ class Mitos(Package):
depends_on('hwloc')
depends_on('mpi')
def install(self, spec, prefix):
with working_dir('spack-build', create=True):
cmake('..', *std_cmake_args)