diff options
author | Benoit Foucher <benoit@zeroc.com> | 2013-01-22 16:15:13 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2013-01-22 16:15:13 +0100 |
commit | c382ec33aff65658802822d99154fb28f6736b0d (patch) | |
tree | b37245b758a2ae693b4d247b59403cc4864176b4 /scripts/TestUtil.py | |
parent | Fix compilation warning (diff) | |
download | ice-c382ec33aff65658802822d99154fb28f6736b0d.tar.bz2 ice-c382ec33aff65658802822d99154fb28f6736b0d.tar.xz ice-c382ec33aff65658802822d99154fb28f6736b0d.zip |
Windows RT ARM support
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 370db12fda3..0b1b5bf66ef 100755 --- a/scripts/TestUtil.py +++ b/scripts/TestUtil.py @@ -1733,7 +1733,7 @@ def processCmdLine(): iceHome = "/usr" if not x64: - x64 = isWin32() and os.environ.get("XTARGET") == "x64" or os.environ.get("LP64") == "yes" + x64 = isWin32() and os.environ.get("PLATFORM").upper() == "X64" or os.environ.get("LP64") == "yes" if iceHome: sys.stdout.write("*** using Ice installation from " + iceHome + " ") |