diff options
author | Bernard Normier <bernard@zeroc.com> | 2007-02-28 21:56:13 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2007-02-28 21:56:13 +0000 |
commit | c588e228575b4660d0dc68b1793fce1236a5504f (patch) | |
tree | 734c2c74035763b8e9acb3f0bd153d92b236588c /cpp/makebindist.py | |
parent | moved IceGridAdmin help to help (diff) | |
download | ice-c588e228575b4660d0dc68b1793fce1236a5504f.tar.bz2 ice-c588e228575b4660d0dc68b1793fce1236a5504f.tar.xz ice-c588e228575b4660d0dc68b1793fce1236a5504f.zip |
removed doc/index.html and moved IceGridAdmin online help to help dir
Diffstat (limited to 'cpp/makebindist.py')
-rwxr-xr-x | cpp/makebindist.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/cpp/makebindist.py b/cpp/makebindist.py index 2f5bb1d47e1..88d3177a8e8 100755 --- a/cpp/makebindist.py +++ b/cpp/makebindist.py @@ -657,7 +657,8 @@ def makeInstall(sources, buildDir, installDir, distro, clean, version, mmVersion # runprog('cp -pR ' + buildDir + '/' + distro + '/ant ' + installDir) runprog('find ' + installDir + '/ant -name "*.java" | xargs rm') - runprog('cp -pR ' + buildDir + '/' + distro + '/resources/IceGridAdmin ' + installDir + '/doc') + initDirectory(os.path.join(installDir, 'help')) + runprog('cp -pR ' + buildDir + '/' + distro + '/resources/IceGridAdmin ' + installDir + '/help') destDir = os.path.join(installDir, 'config') if not os.path.exists(destDir): os.mkdir(destDir) @@ -1124,7 +1125,8 @@ def main(): shutil.copy('lib/Ice.jar', installDir +'/Ice-' + version + '/lib') shutil.copy('lib/IceGridGUI.jar', installDir +'/Ice-' + version + '/lib') runprog('cp -pR ant ' + installDir + '/Ice-' + version) - runprog('cp -pR resources/IceGridAdmin ' + installDir + '/Ice-' + version + 'doc') + initDirectory(os.path.join(installDir, 'help')) + runprog('cp -pR resources/IceGridAdmin ' + installDir + '/Ice-' + version + '/help') runprog('find ' + installDir + '/Ice-' + version + ' -name "*.java" | xargs rm') else: runprog('gmake prefix=' + installDir + '/Ice-' + version + ' install') @@ -1186,7 +1188,6 @@ def main(): # # 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) |