diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2016-06-27 09:01:53 -0500 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2016-06-27 09:01:53 -0500 |
commit | 798dabc8f2b740cb70563fa141beb0ce268ce09a (patch) | |
tree | 989af5768d1c9bfe94ba4abed00c7c7df360cde0 /lib | |
parent | ea88d9cfe9b13a5335b367d74a9008f60a5d9c53 (diff) | |
download | spack-798dabc8f2b740cb70563fa141beb0ce268ce09a.tar.gz spack-798dabc8f2b740cb70563fa141beb0ce268ce09a.tar.bz2 spack-798dabc8f2b740cb70563fa141beb0ce268ce09a.tar.xz spack-798dabc8f2b740cb70563fa141beb0ce268ce09a.zip |
Forgot the unknown key/value pair
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/cmd/create.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/spack/spack/cmd/create.py b/lib/spack/spack/cmd/create.py index 71bd196598..f5f234d7a7 100644 --- a/lib/spack/spack/cmd/create.py +++ b/lib/spack/spack/cmd/create.py @@ -145,7 +145,8 @@ class ConfigureGuesser(object): 'cmake': "depends_on('cmake')", 'scons': "depends_on('scons')", 'python': "extends('python')", - 'R': "extends('R')" + 'R': "extends('R')", + 'unknown': "# depends_on('foo')" } # Default installation instructions |