diff options
author | Brent Eagles <brent@zeroc.com> | 2005-10-11 07:10:09 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2005-10-11 07:10:09 +0000 |
commit | 8b708d8d3528f9e91446e11e4f61fc8cbdffdb56 (patch) | |
tree | 082dbc6013dec4bb06bc1f0b8fc8571b26b5fab9 /cpp/RPMTools.py | |
parent | http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=429 (diff) | |
download | ice-8b708d8d3528f9e91446e11e4f61fc8cbdffdb56.tar.bz2 ice-8b708d8d3528f9e91446e11e4f61fc8cbdffdb56.tar.xz ice-8b708d8d3528f9e91446e11e4f61fc8cbdffdb56.zip |
Adding debug information to the release builds on Win32.
Diffstat (limited to 'cpp/RPMTools.py')
-rw-r--r-- | cpp/RPMTools.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/cpp/RPMTools.py b/cpp/RPMTools.py index 2a06b14b0f8..8e8636d4bca 100644 --- a/cpp/RPMTools.py +++ b/cpp/RPMTools.py @@ -231,7 +231,9 @@ class Subpackage(Package): transforms = [ ('file', 'lib/Ice.jar', 'lib/Ice-%version%/Ice.jar' ), ('dir', 'slice', 'share/slice'), ('dir', 'ant', 'lib/Ice-%version%/ant'), - ('dir', 'python', 'lib/Ice-%version%/python'), + ('dir', 'python', 'lib/python2.4/site-packages'), + ('file', 'lib/IcePy.so', 'lib/python2.4/site-packages/IcePy.so'), + ('file', 'lib/IcePy.so.%version%', 'lib/python2.4/site-packages/IcePy.so.%version%'), ('dir', 'doc', 'share/doc/Ice-%version%/doc'), ('file', 'README', 'share/doc/Ice-%version%/README'), ('file', 'ICE_LICENSE', 'share/doc/Ice-%version%/ICE_LICENSE'), @@ -368,7 +370,9 @@ fileLists = [ 'System Environment/Libraries', iceDescription, '', - [('lib', 'lib/IcePy.so.VERSION'), ('lib', 'lib/IcePy.so'), ('dir', 'lib/Ice-%version%/python')]), + [('lib', 'lib/python2.4/site-packages/IcePy.so.VERSION'), + ('lib', 'lib/python2.4/site-packages/IcePy.so'), + ('dir', 'lib/python2.4/site-packages/')]), Subpackage('python-devel', 'ice-python = %version%', 'Tools and demos for developing Ice applications in Python', |