diff options
author | Gregory Becker <becker33.llnl.gov> | 2016-07-20 11:00:56 -0700 |
---|---|---|
committer | Gregory Becker <becker33.llnl.gov> | 2016-07-20 11:00:56 -0700 |
commit | 106147716ac73180ce80e693ea276612d36b2215 (patch) | |
tree | e6f98cb94d79ff6fc9ad652c45adf66f64461ce8 /lib | |
parent | 0d18f7249c38fdf8c452acd39533b09d13031583 (diff) | |
download | spack-106147716ac73180ce80e693ea276612d36b2215.tar.gz spack-106147716ac73180ce80e693ea276612d36b2215.tar.bz2 spack-106147716ac73180ce80e693ea276612d36b2215.tar.xz spack-106147716ac73180ce80e693ea276612d36b2215.zip |
fixed flake errors
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/platforms/cray_xc.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/spack/spack/platforms/cray_xc.py b/lib/spack/spack/platforms/cray_xc.py index fd16f7d9ba..e3c7761a94 100644 --- a/lib/spack/spack/platforms/cray_xc.py +++ b/lib/spack/spack/platforms/cray_xc.py @@ -48,8 +48,8 @@ class CrayXc(Platform): def detect(self): try: cc_verbose = which('ftn') - text = cc_verbose('-craype-verbose', - output=str, error=str, + text = cc_verbose('-craype-verbose', + output=str, error=str, ignore_errors=True).split() if '-D__CRAYXC' in text: return True |