diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2007-02-27 14:11:32 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2007-02-27 14:11:32 +0000 |
commit | f26b5895b69b7b87f5b0a9aa7739de22a2fa95c9 (patch) | |
tree | 0f0f438ef90b01fa6dcade768ff5fb6300fe53c6 /cpp/makebindist.py | |
parent | More fixes (diff) | |
download | ice-f26b5895b69b7b87f5b0a9aa7739de22a2fa95c9.tar.bz2 ice-f26b5895b69b7b87f5b0a9aa7739de22a2fa95c9.tar.xz ice-f26b5895b69b7b87f5b0a9aa7739de22a2fa95c9.zip |
Do not add html reference
Diffstat (limited to 'cpp/makebindist.py')
-rwxr-xr-x | cpp/makebindist.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cpp/makebindist.py b/cpp/makebindist.py index 67807ff5684..2f5bb1d47e1 100755 --- a/cpp/makebindist.py +++ b/cpp/makebindist.py @@ -1183,6 +1183,12 @@ def main(): runprog("rm -f Ice-%s/config/build.properties" % (version)) runprog("rm -f Ice-%s/config/Make.rules*" % (version)) + # + # Remove html reference files from binary distribution. + # + runprog("rm -f Ice-%s/doc/index.html" % (version)) + runprog("rm -rf Ice-%s/doc/reference" % (version)) + runprog('tar cf Ice-' + version + '-bin-' + getPlatformString() + '.tar Ice-' + version) runprog('gzip -9 Ice-' + version + '-bin-' + getPlatformString() + '.tar') os.chdir(cwd) |