You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by mc...@apache.org on 2013/10/29 21:07:58 UTC

svn commit: r1536876 - /qpid/trunk/qpid/cpp/managementgen/CMakeLists.txt

Author: mcpierce
Date: Tue Oct 29 20:07:58 2013
New Revision: 1536876

URL: http://svn.apache.org/r1536876
Log:
QPID-5273: Fixed installing the qmfgen Python packages.

The install directive was being told to intall the qmfgen direction into
a directory also named qmfgen, which is why the name was doubled.
Telling Cmake to install qmfgen into the Python site-package directory
was the correct approach.

Modified:
    qpid/trunk/qpid/cpp/managementgen/CMakeLists.txt

Modified: qpid/trunk/qpid/cpp/managementgen/CMakeLists.txt
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/cpp/managementgen/CMakeLists.txt?rev=1536876&r1=1536875&r2=1536876&view=diff
==============================================================================
--- qpid/trunk/qpid/cpp/managementgen/CMakeLists.txt (original)
+++ qpid/trunk/qpid/cpp/managementgen/CMakeLists.txt Tue Oct 29 20:07:58 2013
@@ -28,6 +28,7 @@ execute_process(COMMAND ${PYTHON_EXECUTA
 
 install(PROGRAMS qmf-gen DESTINATION ${QPID_INSTALL_BINDIR}
         COMPONENT ${QPID_COMPONENT_QMF})
-install(DIRECTORY qmfgen DESTINATION ${PYTHON_SITEARCH_PACKAGES}/qmfgen
+install(DIRECTORY qmfgen
+        DESTINATION ${PYTHON_SITEARCH_PACKAGES}
         COMPONENT ${QPID_COMPONENT_QMF}
         PATTERN ".svn" EXCLUDE PATTERN "*.pyc" EXCLUDE)



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org