diff options
author | Mark Spruiell <mes@zeroc.com> | 2008-03-21 11:03:00 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2008-03-21 11:03:00 -0700 |
commit | b1972df4520d06ffe243b90746bad1390cf294e0 (patch) | |
tree | 5f6e86121c31e15746b3287f07d3e325d3ee7055 /py/python/Ice.py | |
parent | Added flush (diff) | |
download | ice-b1972df4520d06ffe243b90746bad1390cf294e0.tar.bz2 ice-b1972df4520d06ffe243b90746bad1390cf294e0.tar.xz ice-b1972df4520d06ffe243b90746bad1390cf294e0.zip |
bug fix in Ice.py
Diffstat (limited to 'py/python/Ice.py')
-rw-r--r-- | py/python/Ice.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/py/python/Ice.py b/py/python/Ice.py index 9c7924bbee3..89735152181 100644 --- a/py/python/Ice.py +++ b/py/python/Ice.py @@ -147,13 +147,13 @@ def getSliceDir(): # # Check the default RPM location. # - dir = os.path.join("usr", "share", "Ice-" + iceVer, "slice") + dir = os.path.join("/", "usr", "share", "Ice-" + iceVer, "slice") if os.path.exists(dir): return dir # # Check in /opt. # - dir = os.path.join("opt", "Ice-" + iceVer, "slice") + dir = os.path.join("/", "opt", "Ice-" + iceVer, "slice") if os.path.exists(dir): return dir |