diff options
-rw-r--r-- | libzypp-bindings.spec.cmake | 4 | ||||
-rw-r--r-- | swig/python/CMakeLists.txt | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/libzypp-bindings.spec.cmake b/libzypp-bindings.spec.cmake index 74adc03..59cce1a 100644 --- a/libzypp-bindings.spec.cmake +++ b/libzypp-bindings.spec.cmake @@ -64,7 +64,7 @@ Group: Development/Languages/Python %files -n python-zypp %defattr(-,root,root,-) -%{_libdir}/python2.5/site-package/_zypp.so -%{_libdir}/python2.5/site-package/zypp.py +%{_libdir}/python2.5/site-packages/_zypp.so +%{_libdir}/python2.5/site-packages/zypp.py %changelog diff --git a/swig/python/CMakeLists.txt b/swig/python/CMakeLists.txt index 88f1bdd..9d7158d 100644 --- a/swig/python/CMakeLists.txt +++ b/swig/python/CMakeLists.txt @@ -3,9 +3,9 @@ FIND_PACKAGE(PythonLibs REQUIRED) MESSAGE( STATUS "Python include path: ${PYTHON_INCLUDE_PATH}" ) IF(DEFINED LIB) - SET(PYTHON_LIB_PATH "/usr/${LIB}/python2.5/site-package/") + SET(PYTHON_LIB_PATH "/usr/${LIB}/python2.5/site-packages/") ELSE(DEFINED LIB) - SET(PYTHON_LIB_PATH "/usr/lib/python2.5/site-package/") + SET(PYTHON_LIB_PATH "/usr/lib/python2.5/site-packages/") ENDIF(DEFINED LIB) MESSAGE(STATUS "Python lib path: ${PYTHON_LIB_PATH}") |