diff options
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-x | scripts/TestUtil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py index b6abdeb6ba3..3af0a6823db 100755 --- a/scripts/TestUtil.py +++ b/scripts/TestUtil.py @@ -667,7 +667,7 @@ def getIceBox(): elif type == "release": iceBox = os.path.join(getCppBinDir(lang), "icebox.exe") elif isLinux(): - if x86: + if x86 or (iceHome == "/usr" and not x64): if cpp11: iceBox = os.path.join(getCppBinDir(lang), "icebox32++11") else: |