diff options
author | Marc Laukien <marc@zeroc.com> | 2003-09-03 13:16:14 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2003-09-03 13:16:14 +0000 |
commit | c8e6a24b73b1f9f74cbac8b1e72781fbdbcdb4c8 (patch) | |
tree | 286f7726192cc1c330b7afd58a4019025bd1e74f /cpp/config/TestUtil.py | |
parent | Removed moveOldLogs (diff) | |
download | ice-c8e6a24b73b1f9f74cbac8b1e72781fbdbcdb4c8.tar.bz2 ice-c8e6a24b73b1f9f74cbac8b1e72781fbdbcdb4c8.tar.xz ice-c8e6a24b73b1f9f74cbac8b1e72781fbdbcdb4c8.zip |
cygwin fix
Diffstat (limited to 'cpp/config/TestUtil.py')
-rw-r--r-- | cpp/config/TestUtil.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cpp/config/TestUtil.py b/cpp/config/TestUtil.py index 3fccc2ea3a6..cdb2528db79 100644 --- a/cpp/config/TestUtil.py +++ b/cpp/config/TestUtil.py @@ -152,7 +152,10 @@ else: raise "can't find toplevel directory!" if isWin32(): - os.environ["PATH"] = os.path.join(toplevel, "bin") + ";" + os.getenv("PATH", "") + if isCygwin(): + os.environ["PATH"] = os.path.join(toplevel, "bin") + ":" + os.getenv("PATH", "") + else: + os.environ["PATH"] = os.path.join(toplevel, "bin") + ";" + os.getenv("PATH", "") else: os.environ["LD_LIBRARY_PATH"] = os.path.join(toplevel, "lib") + ":" + os.getenv("LD_LIBRARY_PATH", "") os.environ["LD_LIBRARY_PATH_64"] = os.path.join(toplevel, "lib") + ":" + os.getenv("LD_LIBRARY_PATH_64", "") |