diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2017-08-07 12:13:31 -0500 |
---|---|---|
committer | becker33 <becker33@llnl.gov> | 2017-08-07 10:13:31 -0700 |
commit | 392603e90b6c34a0d53ec9276188134e50e59e6b (patch) | |
tree | 438db363093ea16f596cf536890e19ab7c8b9f7e | |
parent | c53b1b9ad1488d217d013bf695bfc4c8a16da720 (diff) | |
download | spack-392603e90b6c34a0d53ec9276188134e50e59e6b.tar.gz spack-392603e90b6c34a0d53ec9276188134e50e59e6b.tar.bz2 spack-392603e90b6c34a0d53ec9276188134e50e59e6b.tar.xz spack-392603e90b6c34a0d53ec9276188134e50e59e6b.zip |
Make GCC binutils variant default to False (#4973)
-rw-r--r-- | var/spack/repos/builtin/packages/gcc/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/gcc/package.py b/var/spack/repos/builtin/packages/gcc/package.py index e9b9c93dd6..0d31ef0dfc 100644 --- a/var/spack/repos/builtin/packages/gcc/package.py +++ b/var/spack/repos/builtin/packages/gcc/package.py @@ -69,7 +69,7 @@ class Gcc(AutotoolsPackage): multi=True, description='Compilers and runtime libraries to build') variant('binutils', - default=sys.platform != 'darwin', + default=False, description='Build via binutils') variant('piclibs', default=False, |