summaryrefslogtreecommitdiff
path: root/py/python/Ice.py
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2008-03-21 11:03:00 -0700
committerMark Spruiell <mes@zeroc.com>2008-03-21 11:03:00 -0700
commitb1972df4520d06ffe243b90746bad1390cf294e0 (patch)
tree5f6e86121c31e15746b3287f07d3e325d3ee7055 /py/python/Ice.py
parentAdded flush (diff)
downloadice-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.py4
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