diff options
author | Benoit Foucher <benoit@zeroc.com> | 2007-11-20 12:02:35 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2007-11-20 12:02:35 +0100 |
commit | a021dbce94296f83bc5feb25a2aa99461bab057d (patch) | |
tree | 648a3b5632d7e80006345540f0e2c1a1ddb266fe /config/makeprops.py | |
parent | Merge branch 'master' of cvs:/home/git/ice (diff) | |
download | ice-a021dbce94296f83bc5feb25a2aa99461bab057d.tar.bz2 ice-a021dbce94296f83bc5feb25a2aa99461bab057d.tar.xz ice-a021dbce94296f83bc5feb25a2aa99461bab057d.zip |
Fixed bug 2235, other minor fixes
Diffstat (limited to 'config/makeprops.py')
-rwxr-xr-x | config/makeprops.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/config/makeprops.py b/config/makeprops.py index 5933fd2cb37..a8d0f09a13d 100755 --- a/config/makeprops.py +++ b/config/makeprops.py @@ -372,8 +372,8 @@ const IceInternal::PropertyArray """ % { 'className' : self.className, 'section': self.currentSection }) def moveFiles(self, location): - shutil.move(self.className + ".h", os.path.join(location, "src", "Ice")) - shutil.move(self.className + ".cpp", os.path.join(location, "src", "Ice")) + shutil.move(self.className + ".h", os.path.join(location, "cpp", "src", "Ice")) + shutil.move(self.className + ".cpp", os.path.join(location, "cpp", "src", "Ice")) class JavaPropertyHandler(PropertyHandler): def __init__(self, inputfile, c): @@ -440,7 +440,7 @@ class JavaPropertyHandler(PropertyHandler): self.srcFile.write(" };\n\n") def moveFiles(self, location): - shutil.move(self.className + ".java", os.path.join(location, "..", "java", "src", "IceInternal")) + shutil.move(self.className + ".java", os.path.join(location, "java", "src", "IceInternal")) class CSPropertyHandler(PropertyHandler): def __init__(self, inputfile, c): @@ -502,7 +502,7 @@ class CSPropertyHandler(PropertyHandler): self.srcFile.write("\n") def moveFiles(self, location): - shutil.move(self.className + ".cs", os.path.join(location, "..", "cs", "src", "Ice")) + shutil.move(self.className + ".cs", os.path.join(location, "cs", "src", "Ice")) class MultiHandler(PropertyHandler): def __init__(self, inputfile, c): |