diff options
author | Michi Henning <michi@zeroc.com> | 2005-05-16 05:37:41 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2005-05-16 05:37:41 +0000 |
commit | b16346e8e65a09ef0f00f5d0f8e1314c2c4d7d05 (patch) | |
tree | f362ee8e9559bd38170b634341a3cc38019d4733 /php/makedist.py | |
parent | file README was initially added on branch R2_1_branch. (diff) | |
download | ice-b16346e8e65a09ef0f00f5d0f8e1314c2c4d7d05.tar.bz2 ice-b16346e8e65a09ef0f00f5d0f8e1314c2c4d7d05.tar.xz ice-b16346e8e65a09ef0f00f5d0f8e1314c2c4d7d05.zip |
Added KNOWN_ISSUES.txt.
Diffstat (limited to 'php/makedist.py')
-rwxr-xr-x | php/makedist.py | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/php/makedist.py b/php/makedist.py index 218d950f7cc..b090052727b 100755 --- a/php/makedist.py +++ b/php/makedist.py @@ -80,9 +80,10 @@ os.mkdir(distdir) os.chdir(distdir) # -# Export sources from CVS. +# Export sources from CVS. (Assumes icephp and ice use the same tag.) # os.system("cvs -d cvs.zeroc.com:/home/cvsroot export " + tag + " icephp") +os.system("cvs -d cvs.zeroc.com:/home/cvsroot export " + tag + " ice/install/vc71/doc/KNOWN_ISSUES.txt") # # Remove files. @@ -105,6 +106,13 @@ fixVersion(find("icephp", "README*"), version) fixVersion(find("icephp", "INSTALL*"), version) # +# Copy KNOWN_ISSUES.txt. +# +shutil.copyfile("ice/install/vc71/doc/KNOWN_ISSUES.txt", "icephp/KNOWN_ISSUES.txt") + +shutil.rmtree("ice") + +# # Create archives. # icephpver = "IcePHP-" + version |