diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2016-03-09 10:46:56 -0500 |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2016-07-14 16:21:46 -0400 |
commit | 6fd45520daa93ee6094eaf9df57e5b26d4d6d1bf (patch) | |
tree | cbab2ecff946447d6aa427bdb93830dc9c13cca4 /var/spack/repos/builtin/packages/binutils/package.py | |
parent | 45c675fe7ff69408e4f407a9c5eb8f92f746faf8 (diff) | |
download | spack-6fd45520daa93ee6094eaf9df57e5b26d4d6d1bf.tar.gz spack-6fd45520daa93ee6094eaf9df57e5b26d4d6d1bf.tar.bz2 spack-6fd45520daa93ee6094eaf9df57e5b26d4d6d1bf.tar.xz spack-6fd45520daa93ee6094eaf9df57e5b26d4d6d1bf.zip |
deptypes: mark deptypes in packages
Diffstat (limited to 'var/spack/repos/builtin/packages/binutils/package.py')
-rw-r--r-- | var/spack/repos/builtin/packages/binutils/package.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/binutils/package.py b/var/spack/repos/builtin/packages/binutils/package.py index 35d52128c3..e329e6fd7a 100644 --- a/var/spack/repos/builtin/packages/binutils/package.py +++ b/var/spack/repos/builtin/packages/binutils/package.py @@ -38,9 +38,9 @@ class Binutils(Package): version('2.23.2', '4f8fa651e35ef262edc01d60fb45702e') version('2.20.1', '2b9dc8f2b7dbd5ec5992c6e29de0b764') - depends_on('m4') - depends_on('flex') - depends_on('bison') + depends_on('m4', type='build') + depends_on('flex', type='build') + depends_on('bison', type='build') # Add a patch that creates binutils libiberty_pic.a which is preferred by # OpenSpeedShop and cbtf-krell |