diff options
author | Jose <jose@zeroc.com> | 2014-12-02 21:09:27 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2014-12-02 21:09:27 +0100 |
commit | bf537af46738df712491f71a7ce3453999a9e4c0 (patch) | |
tree | 907ca738dcb99c2647b774d388705dd436051b9a /demoscript | |
parent | Fix bzi2 C# warnings in demos when running with testicedist.py (diff) | |
download | ice-bf537af46738df712491f71a7ce3453999a9e4c0.tar.bz2 ice-bf537af46738df712491f71a7ce3453999a9e4c0.tar.xz ice-bf537af46738df712491f71a7ce3453999a9e4c0.zip |
(ICE-6047) - icebox32 on x86 Linux install (RHEL6)
Diffstat (limited to 'demoscript')
-rw-r--r-- | demoscript/Util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demoscript/Util.py b/demoscript/Util.py index 8b2e035384b..afcaa7a9142 100644 --- a/demoscript/Util.py +++ b/demoscript/Util.py @@ -682,7 +682,7 @@ def getIceBox(mapping = "cpp"): if isWin32() and isDebugBuild(): iceBox += "d" elif isLinux(): - if x86: + if not x64: iceBox += "32" if cpp11: iceBox += "++11" |