diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2014-10-25 14:38:42 -0700 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2014-10-25 14:38:42 -0700 |
commit | fa4d58db52ae90fa3159487af484578038d55b42 (patch) | |
tree | 9f16ecfb7f2c90009845c8f88099f345bb16e569 | |
parent | 94a52a87105044ab276af901860c0fe3fbdca321 (diff) | |
download | spack-fa4d58db52ae90fa3159487af484578038d55b42.tar.gz spack-fa4d58db52ae90fa3159487af484578038d55b42.tar.bz2 spack-fa4d58db52ae90fa3159487af484578038d55b42.tar.xz spack-fa4d58db52ae90fa3159487af484578038d55b42.zip |
Add a dummy depends_on to the boilerplate.
-rw-r--r-- | lib/spack/spack/cmd/create.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/spack/spack/cmd/create.py b/lib/spack/spack/cmd/create.py index 5f6350c8e8..7ac10285a4 100644 --- a/lib/spack/spack/cmd/create.py +++ b/lib/spack/spack/cmd/create.py @@ -72,6 +72,9 @@ class ${class_name}(Package): ${versions} + # FIXME: Add dependencies if this package requires them. + # depends_on("foo") + def install(self, spec, prefix): # FIXME: Modify the configure line to suit your build system here. ${configure} |