diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2009-10-28 13:43:20 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2009-10-28 13:43:20 -0230 |
commit | 7cf59a08ed627e9f52363146be5c14ecc8a1f8ca (patch) | |
tree | 092c0c5170794875ae7d3592c2f485c1d67092e2 /demoscript/Util.py | |
parent | Fixed error from bug 4198 fix (diff) | |
download | ice-7cf59a08ed627e9f52363146be5c14ecc8a1f8ca.tar.bz2 ice-7cf59a08ed627e9f52363146be5c14ecc8a1f8ca.tar.xz ice-7cf59a08ed627e9f52363146be5c14ecc8a1f8ca.zip |
Bug 4184 - use DEVPATH instead of relying on *.exe.config
Diffstat (limited to 'demoscript/Util.py')
-rw-r--r-- | demoscript/Util.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/demoscript/Util.py b/demoscript/Util.py index 0f64819f0a7..5e6b5d84d1c 100644 --- a/demoscript/Util.py +++ b/demoscript/Util.py @@ -130,7 +130,9 @@ def configurePaths(): # # On Windows, C# assemblies are found thanks to the .exe.config files. # - if not isWin32(): + if isWin32(): + addenv("DEVPATH", os.path.join(getIceDir("cs"), "bin")) + else: addenv("MONO_PATH", os.path.join(getIceDir("cs"), "bin")) # |