diff options
author | Brent Eagles <brent@zeroc.com> | 2005-11-15 02:12:22 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2005-11-15 02:12:22 +0000 |
commit | 8826d63bf799843820b314fad4a0b8bf404945ea (patch) | |
tree | 953e71298542724b194c7316bcc35a2f53dc0eaa /cpp/makebindist.py | |
parent | revise some version information for third party libraries (diff) | |
download | ice-8826d63bf799843820b314fad4a0b8bf404945ea.tar.bz2 ice-8826d63bf799843820b314fad4a0b8bf404945ea.tar.xz ice-8826d63bf799843820b314fad4a0b8bf404945ea.zip |
some fixes for SRPMS
Diffstat (limited to 'cpp/makebindist.py')
-rwxr-xr-x | cpp/makebindist.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cpp/makebindist.py b/cpp/makebindist.py index e79ab1232a1..42ff95c0cab 100755 --- a/cpp/makebindist.py +++ b/cpp/makebindist.py @@ -1039,6 +1039,13 @@ def main(): binaries.extend(glob.glob(installDir + '/Ice-' + version + '/lib/*' + shlibExtensions(version, soVersion)[0])) cwd = os.getcwd() os.chdir(installDir) + + # + # XXX- make configurable. + # + runprog('cp ~/java/looks-1.3.2.jar Ice-%s/lib' % version) + runprog('cp ~/java/forms-1.0.5.jar Ice-%s/lib' % version) + if not getPlatform().startswith('linux'): # # Get third party libraries. @@ -1106,6 +1113,7 @@ def main(): shutil.copy(installFiles + '/thirdparty/php/ice.ini', '/usr/src/redhat/SOURCES') shutil.copy(installFiles + '/thirdparty/php/configure.5.0.4.gz', '/usr/src/redhat/SOURCES') + shutil.copy(installFiles + '/common/iceproject.xml', '/usr/src/redhat/SOURCES') iceArchives = glob.glob(sources + '/Ice*' + version + '*.gz') for f in iceArchives: shutil.copy(f, '/usr/src/redhat/SOURCES') |