summaryrefslogtreecommitdiff
path: root/qpid/cpp
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2013-04-11 14:08:46 +0000
committerAlan Conway <aconway@apache.org>2013-04-11 14:08:46 +0000
commitb2e27a4dfbd42664b85d741498037a69ce892144 (patch)
tree2c80833e6b67d83db1de56180762f362fe650fe1 /qpid/cpp
parent06ab18a06756d737396fb847fc3143b58c2df094 (diff)
downloadqpid-python-b2e27a4dfbd42664b85d741498037a69ce892144.tar.gz
QPID-4737: Fix cmake "make package"
"make package" was attempting to install files with absolute paths to the final install location, rather than the temporary install dir. Trivial 1 line fix: set(CPACK_SET_DESTDIR ON) git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1466895 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp')
-rw-r--r--qpid/cpp/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/CMakeLists.txt b/qpid/cpp/CMakeLists.txt
index 74b6bdcc1d..70df7ce1a2 100644
--- a/qpid/cpp/CMakeLists.txt
+++ b/qpid/cpp/CMakeLists.txt
@@ -82,7 +82,7 @@ if (WIN32)
endif (WIN32)
# set(CMAKE_INCLUDE_CURRENT_DIR ON)
-
+set(CPACK_SET_DESTDIR ON)
set(CPACK_PACKAGE_NAME "qpid-cpp")
set(CPACK_PACKAGE_VENDOR "Apache Software Foundation")
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Apache Qpid C++")