diff options
author | Brent Eagles <brent@zeroc.com> | 2005-02-16 19:50:12 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2005-02-16 19:50:12 +0000 |
commit | ef607ebc130a909afb02befda459fd2b28de19a4 (patch) | |
tree | 1895fa0ef21b7fad3875982774fa5a2e8168cc79 /cpp | |
parent | Upgrated to 2005 (diff) | |
download | ice-ef607ebc130a909afb02befda459fd2b28de19a4.tar.bz2 ice-ef607ebc130a909afb02befda459fd2b28de19a4.tar.xz ice-ef607ebc130a909afb02befda459fd2b28de19a4.zip |
missing cert files and the python files were being installed in the wrong
place for RPMS
Diffstat (limited to 'cpp')
-rwxr-xr-x | cpp/newmakebindist.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cpp/newmakebindist.py b/cpp/newmakebindist.py index 0af7902d9ad..4505d2676f9 100755 --- a/cpp/newmakebindist.py +++ b/cpp/newmakebindist.py @@ -87,6 +87,7 @@ class Subpackage(Package): transforms = [ ("lib/Ice.jar", "lib/Ice-%version%/Ice.jar" ), ("slice", "share/slice"), ("ant", "lib/Ice-%version%/ant"), + ("python", "lib/Ice-%version%/python"), ("doc", "share/doc/Ice-%version%"), ("ICE_LICENSE", "share/doc/Ice-%version%/ICE_LICENSE"), ("LICENSE", "share/doc/Ice-%version%/LICENSE") @@ -172,7 +173,7 @@ fileLists = [ "Ice runtime for Python applications", "Development/Libraries", "", - [("lib", "lib/IcePy.so"), ("dir", "python")]), + [("lib", "lib/IcePy.so"), ("dir", "lib/Ice-%version%/python")]), Subpackage("python-devel", "ice-python", "Ice tools for developing Ice applications in Python", @@ -272,7 +273,7 @@ def extractDemos(buildDir, version, distro, demoDir): Ice""" cwd = os.getcwd() os.chdir(buildDir + "/demotree") - os.system("tar xvfz ../sources/" + distro + ".tar.gz " + distro + "/demo " + distro + "/config ") + os.system("tar xvfz ../sources/" + distro + ".tar.gz " + distro + "/demo " + distro + "/config " + distro + "/certs") shutil.move(distro + "/demo", buildDir + "/Ice-" + version + "-demos/demo_" + demoDir) # |