diff options
author | Bernard Normier <bernard@zeroc.com> | 2012-10-19 17:54:47 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2012-10-19 17:54:47 -0400 |
commit | 7de1e8c3f56b71821d7e68636c10bec0e6bd12f3 (patch) | |
tree | 816ba75b0809a71285931822a2939b2fd1a5cccc /scripts/IceGridAdmin.py | |
parent | Fixed vsaddin build (diff) | |
download | ice-7de1e8c3f56b71821d7e68636c10bec0e6bd12f3.tar.bz2 ice-7de1e8c3f56b71821d7e68636c10bec0e6bd12f3.tar.xz ice-7de1e8c3f56b71821d7e68636c10bec0e6bd12f3.zip |
Fixed ICE-4897: replace novc6 by novc90
Diffstat (limited to 'scripts/IceGridAdmin.py')
-rw-r--r-- | scripts/IceGridAdmin.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/IceGridAdmin.py b/scripts/IceGridAdmin.py index cbb63dd222f..a00bf81bf53 100644 --- a/scripts/IceGridAdmin.py +++ b/scripts/IceGridAdmin.py @@ -71,7 +71,7 @@ def getDefaultLocatorProperty(): def startIceGridRegistry(testdir, dynamicRegistration = False): iceGrid = "" - if TestUtil.isVC6(): + if TestUtil.isVC90(): iceGrid = os.path.join(TestUtil.getServiceDir(), "icegridregistry") else: iceGrid = os.path.join(TestUtil.getCppBinDir(), "icegridregistry") @@ -156,7 +156,7 @@ def iceGridNodePropertiesOverride(): def startIceGridNode(testdir): iceGrid = "" - if TestUtil.isVC6(): + if TestUtil.isVC90(): iceGrid = os.path.join(TestUtil.getServiceDir(), "icegridnode") else: iceGrid = os.path.join(TestUtil.getCppBinDir(), "icegridnode") |