summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2017-08-05 10:15:18 -0500
committerGitHub <noreply@github.com>2017-08-05 10:15:18 -0500
commitc7df12f69826448fd9af875e44348b8f8d0ff067 (patch)
tree55ab6e582d463f2c45f7935f5c15362d50b7470d /lib
parent17cdb73be7a781b7ec49fa02703a0e324ee2eaba (diff)
downloadspack-c7df12f69826448fd9af875e44348b8f8d0ff067.tar.gz
spack-c7df12f69826448fd9af875e44348b8f8d0ff067.tar.bz2
spack-c7df12f69826448fd9af875e44348b8f8d0ff067.tar.xz
spack-c7df12f69826448fd9af875e44348b8f8d0ff067.zip
Massive conversion from Package to CMakePackage (#4975)
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/build_environment.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/spack/spack/build_environment.py b/lib/spack/spack/build_environment.py
index e41edc14f8..34c9cd56d2 100644
--- a/lib/spack/spack/build_environment.py
+++ b/lib/spack/spack/build_environment.py
@@ -333,6 +333,7 @@ def set_module_variables_for_package(pkg, module):
m.make = MakeExecutable('make', jobs)
m.gmake = MakeExecutable('gmake', jobs)
m.scons = MakeExecutable('scons', jobs)
+ m.ninja = MakeExecutable('ninja', jobs)
# easy shortcut to os.environ
m.env = os.environ