summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGregory Becker <becker33.llnl.gov>2016-07-20 11:00:56 -0700
committerGregory Becker <becker33.llnl.gov>2016-07-20 11:00:56 -0700
commit106147716ac73180ce80e693ea276612d36b2215 (patch)
treee6f98cb94d79ff6fc9ad652c45adf66f64461ce8 /lib
parent0d18f7249c38fdf8c452acd39533b09d13031583 (diff)
downloadspack-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.py4
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