summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2005-08-04 12:49:07 +0000
committerDwayne Boone <dwayne@zeroc.com>2005-08-04 12:49:07 +0000
commit0d9937fce3f17d007c85f8c3f99b7772a429b091 (patch)
treea1d85007ef75f035c5956d0411a6c96da2eacca1 /cpp
parentAdded install files for Ice-E translators (diff)
downloadice-0d9937fce3f17d007c85f8c3f99b7772a429b091.tar.bz2
ice-0d9937fce3f17d007c85f8c3f99b7772a429b091.tar.xz
ice-0d9937fce3f17d007c85f8c3f99b7772a429b091.zip
Use Ice-E specific install files
Diffstat (limited to 'cpp')
-rwxr-xr-xcpp/iceemakedist.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/cpp/iceemakedist.py b/cpp/iceemakedist.py
index ed5d0d70855..0bcbdc81717 100755
--- a/cpp/iceemakedist.py
+++ b/cpp/iceemakedist.py
@@ -232,6 +232,8 @@ os.system("cvs " + quiet + " -d cvs.zeroc.com:/home/cvsroot export -l " + tag +
"ice/include " +
"ice/include/IceUtil " +
"ice/include/Slice " +
+ "ice/install " +
+ "ice/install/icee " +
"ice/lib " +
"ice/src " +
"ice/src/icecpp " +
@@ -244,10 +246,24 @@ os.system("cvs " + quiet + " -d cvs.zeroc.com:/home/cvsroot export -l " + tag +
)
#
+# Copy Ice-E specific install files.
+#
+print "Copying icee install files..."
+shutil.copyfile(os.path.join("ice", "install", "icee", "ICE_LICENSE"), os.path.join("ice", "ICE_LICENSE"))
+shutil.copyfile(os.path.join("ice", "install", "icee", "INSTALL.LINUX"), os.path.join("ice", "INSTALL.LINUX"))
+shutil.copyfile(os.path.join("ice", "install", "icee", "INSTALL.WINDOWS"), os.path.join("ice", "INSTALL.WINDOWS"))
+
+#
# Remove files.
#
print "Removing unnecessary files..."
filesToRemove = [ \
+ os.path.join("ice", "CHANGES"), \
+ os.path.join("ice", "INSTALL.AIX"), \
+ os.path.join("ice", "INSTALL.FREEBSD"), \
+ os.path.join("ice", "INSTALL.HP-UX"), \
+ os.path.join("ice", "INSTALL.MACOSX"), \
+ os.path.join("ice", "INSTALL.SOLARIS"), \
os.path.join("ice", "iceemakedist.py"), \
os.path.join("ice", "makedist.py"), \
os.path.join("ice", "makebindist.py"), \
@@ -266,6 +282,7 @@ filesToRemove = [ \
filesToRemove.extend(find("ice", ".dummy"))
for x in filesToRemove:
os.remove(x)
+shutil.rmtree(os.path.join("ice", "install"))
#
# Generate bison files.