diff options
author | Charles E. Rolke <chug@apache.org> | 2015-04-15 17:52:32 +0000 |
---|---|---|
committer | Charles E. Rolke <chug@apache.org> | 2015-04-15 17:52:32 +0000 |
commit | 20b83f12939c0d68e2dfff92637de900ada654dd (patch) | |
tree | 78378b55d46e93342dfb0416c9101fbcdce30a07 /qpid/cpp/BuildInstallSettings.cmake | |
parent | a900f0f4860ae0d724838469b7c6aebeada80b38 (diff) | |
download | qpid-python-20b83f12939c0d68e2dfff92637de900ada654dd.tar.gz |
QPID-6493: cmake install TARGET component syntax error.
Patch from Scott M Stark.
Reviewed at https://reviews.apache.org/r/33195
This patch worked fine in my tests with the exception that using the install
command 'cmake -DCOMPONENT=development -P src/cmake_install.cmake' executes
the install but does not produce an install_manifest.txt file. While not
essential the install_manifest.txt files are part of my routine housekeeping.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1673897 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/BuildInstallSettings.cmake')
-rw-r--r-- | qpid/cpp/BuildInstallSettings.cmake | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/qpid/cpp/BuildInstallSettings.cmake b/qpid/cpp/BuildInstallSettings.cmake index b19116d845..b502854cc9 100644 --- a/qpid/cpp/BuildInstallSettings.cmake +++ b/qpid/cpp/BuildInstallSettings.cmake @@ -143,7 +143,7 @@ if (UNIX) set (DOC_INSTALL_DIR ${SHARE_INSTALL_DIR}/doc/${CMAKE_PROJECT_NAME}-${QPID_VERSION_FULL} CACHE PATH "Shared read only data directory") mark_as_advanced(INCLUDE_INSTALL_DIR LIB_INSTALL_DIR SYSCONF_INSTALL_DIR SHARE_INSTALL_DIR DOC_INSTALL_DIR) - set (QPID_COMPONENT_BROKER runtime) + set (QPID_COMPONENT_BROKER broker) set (QPID_COMPONENT_CLIENT runtime) set (QPID_COMPONENT_COMMON runtime) set (CPACK_COMPONENT_RUNTIME_DISPLAY_NAME @@ -185,5 +185,4 @@ if (UNIX) if("${isSystemDir}" STREQUAL "-1") set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${LIB_INSTALL_DIR}") endif("${isSystemDir}" STREQUAL "-1") - endif (UNIX) |