summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorAli Saidi <saidi@eecs.umich.edu>2007-01-27 15:47:18 -0500
committerAli Saidi <saidi@eecs.umich.edu>2007-01-27 15:47:18 -0500
commitf9a341f8e7871135e52d208c65185c96c1e51de5 (patch)
tree11e49e1c4c0dc527f11b2fbb834cd0ccef543c81 /SConstruct
parent02bd40d552f6c3f56db43ea63f06ae4312a8e48a (diff)
downloadgem5-f9a341f8e7871135e52d208c65185c96c1e51de5.tar.xz
I missed a couple of things
--HG-- extra : convert_revision : 2fa44718e381ff743fa1cf12f4db2221dca87e4c
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct2
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index 12f735a9d..adcc9eb7c 100644
--- a/SConstruct
+++ b/SConstruct
@@ -219,7 +219,7 @@ env['SUNCC'] = subprocess.Popen(env['CXX'] + ' -V', shell=True,
env['ICC'] = subprocess.Popen(env['CXX'] + ' -V', shell=True,
stdout=subprocess.PIPE, stderr=subprocess.STDOUT,
close_fds=True).communicate()[0].find('Intel') >= 0
-if env['GCC'] + env['SUNCC'] env['ICC'] > 1:
+if env['GCC'] + env['SUNCC'] + env['ICC'] > 1:
print 'Error: How can we have two at the same time?'
Exit(1)