summaryrefslogtreecommitdiff
path: root/cpp/config/makeprops.py
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2007-06-14 09:52:16 +0200
committerBenoit Foucher <benoit@zeroc.com>2007-06-14 09:52:16 +0200
commit9eb7e9ef9a63bd2472849fc66ea61ebe44ca57b8 (patch)
tree2728c06eeda0a387f377a99f27d70d48b7367d61 /cpp/config/makeprops.py
parenthttp://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=2251. Fixed Dwayne's problem (diff)
downloadice-9eb7e9ef9a63bd2472849fc66ea61ebe44ca57b8.tar.bz2
ice-9eb7e9ef9a63bd2472849fc66ea61ebe44ca57b8.tar.xz
ice-9eb7e9ef9a63bd2472849fc66ea61ebe44ca57b8.zip
Fixed bug 2254
Diffstat (limited to 'cpp/config/makeprops.py')
-rw-r--r--cpp/config/makeprops.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/config/makeprops.py b/cpp/config/makeprops.py
index 7a62c97b0f4..344e2cfe376 100644
--- a/cpp/config/makeprops.py
+++ b/cpp/config/makeprops.py
@@ -527,8 +527,8 @@ class JavaPropertyHandler(PropertyHandler):
self.srcFile.write(" };\n\n")
def moveFiles(self, location):
- shutil.move(self.className + ".java", os.path.join(location, "..", "icej", "src", "IceInternal"))
- shutil.move("Property.java", os.path.join(location, "..", "icej", "src", "IceInternal"))
+ shutil.move(self.className + ".java", os.path.join(location, "..", "java", "src", "IceInternal"))
+ shutil.move("Property.java", os.path.join(location, "..", "java", "src", "IceInternal"))
class CSPropertyHandler(PropertyHandler):
def __init__(self, inputfile, c):
@@ -597,8 +597,8 @@ class CSPropertyHandler(PropertyHandler):
self.srcFile.write("\n")
def moveFiles(self, location):
- shutil.move(self.className + ".cs", os.path.join(location, "..", "icecs", "src", "Ice"))
- shutil.move("Property.cs", os.path.join(location, "..", "icecs", "src", "Ice"))
+ shutil.move(self.className + ".cs", os.path.join(location, "..", "cs", "src", "Ice"))
+ shutil.move("Property.cs", os.path.join(location, "..", "cs", "src", "Ice"))
class MultiHandler(PropertyHandler):
def __init__(self, inputfile, c):