diff options
author | Mark Spruiell <mes@zeroc.com> | 2006-10-25 23:20:23 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2006-10-25 23:20:23 +0000 |
commit | e24386b3d649069ea0ac8740b0af6a4664a5918e (patch) | |
tree | 4d35cdcf989a44d9eba95e18fc9a3e58b2c089b9 /rb/config/TestUtil.py | |
parent | more cleanup (diff) | |
download | ice-e24386b3d649069ea0ac8740b0af6a4664a5918e.tar.bz2 ice-e24386b3d649069ea0ac8740b0af6a4664a5918e.tar.xz ice-e24386b3d649069ea0ac8740b0af6a4664a5918e.zip |
fix for missing ICE_HOME
Diffstat (limited to 'rb/config/TestUtil.py')
-rw-r--r-- | rb/config/TestUtil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rb/config/TestUtil.py b/rb/config/TestUtil.py index f532cdd0bef..bf639a68964 100644 --- a/rb/config/TestUtil.py +++ b/rb/config/TestUtil.py @@ -78,7 +78,7 @@ for o, a in opts: # # Check for ICE_HOME. # -ice_home = os.environ["ICE_HOME"] +ice_home = os.getenv("ICE_HOME", "") if len(ice_home) == 0: print "ICE_HOME is not defined" sys.exit(1) |