diff options
author | Bernard Normier <bernard@zeroc.com> | 2007-02-05 16:04:24 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2007-02-05 16:04:24 +0000 |
commit | e2472fec1c01ad3bfa41e2edcc528e7a83048c51 (patch) | |
tree | 5ed44f3b5bf512bf9c03150d07e2f653d54b9f90 /py/makedist.py | |
parent | removed space (diff) | |
download | ice-e2472fec1c01ad3bfa41e2edcc528e7a83048c51.tar.bz2 ice-e2472fec1c01ad3bfa41e2edcc528e7a83048c51.tar.xz ice-e2472fec1c01ad3bfa41e2edcc528e7a83048c51.zip |
Fixed bug #1746
Diffstat (limited to 'py/makedist.py')
-rwxr-xr-x | py/makedist.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/py/makedist.py b/py/makedist.py index 9f45835dbbf..2e325c8dff3 100755 --- a/py/makedist.py +++ b/py/makedist.py @@ -160,7 +160,7 @@ if not skipDocs: os.chdir(cwd) os.mkdir(os.path.join("icepy", "doc")) os.rename(os.path.join("ice", "doc", "reference"), os.path.join("icepy", "doc", "reference")) - os.rename(os.path.join("ice", "doc", "README.html"), os.path.join("icepy", "doc", "README.html")) + os.rename(os.path.join("ice", "doc", "index.html"), os.path.join("icepy", "doc", "index.html")) os.rename(os.path.join("ice", "doc", "images"), os.path.join("icepy", "doc", "images")) # @@ -257,6 +257,7 @@ config.close() print "Fixing version in README and INSTALL files..." fixVersion(find("icepy", "README*"), version) fixVersion(find("icepy", "INSTALL*"), version) +fixVersion(find("icepy/doc", "index.html"), version) # # Create source archives. |