diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2016-07-15 00:29:16 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-15 00:29:16 -0700 |
commit | 077848fc0bcb844a88f5aa0dd55182013634ba6a (patch) | |
tree | 61c08dd1ed5a7ada8e84a44dc9b70996bc8bf361 /var/spack/repos/builtin/packages/binutils/package.py | |
parent | f3e95884572ee379b38b6b77516dc4fe6ad3d3fc (diff) | |
parent | 5d152edcafbe1b5c4a3937163b58c395b01d27c5 (diff) | |
download | spack-077848fc0bcb844a88f5aa0dd55182013634ba6a.tar.gz spack-077848fc0bcb844a88f5aa0dd55182013634ba6a.tar.bz2 spack-077848fc0bcb844a88f5aa0dd55182013634ba6a.tar.xz spack-077848fc0bcb844a88f5aa0dd55182013634ba6a.zip |
Merge pull request #378 from mathstuf/dep-types
dependency types
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 |