diff options
Diffstat (limited to 'cpp')
-rwxr-xr-x | cpp/allDemos.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/allDemos.py b/cpp/allDemos.py index 3d9c1e04973..9b1c1edb67a 100755 --- a/cpp/allDemos.py +++ b/cpp/allDemos.py @@ -76,10 +76,10 @@ demos = [ # use x86 db tools that are currently not available for x64 # distributions. # -if not Util.isX86(): +if not "--x86" in sys.argv: demos += ["Freeze/backup"] -if not Util.isCpp11(): +if not "--c++11" in sys.argv: demos += ["IceGrid/customLoadBalancing"] if __name__ == "__main__": |