summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorStephen D. Huston <shuston@apache.org>2009-12-14 21:33:16 +0000
committerStephen D. Huston <shuston@apache.org>2009-12-14 21:33:16 +0000
commitd49c1478c70947f58e30b128f510202e16699888 (patch)
tree0fd2be9f188607abf5267864361060e1239aa089 /cpp
parent9bae1f85fbdbb860e62f320fc87f43571ef22af5 (diff)
downloadqpid-python-d49c1478c70947f58e30b128f510202e16699888.tar.gz
Remove stray comma; resolving QPID-2202
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@890487 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
-rw-r--r--cpp/src/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/CMakeLists.txt b/cpp/src/CMakeLists.txt
index f09d4a8ad9..8de4e01e6e 100644
--- a/cpp/src/CMakeLists.txt
+++ b/cpp/src/CMakeLists.txt
@@ -166,7 +166,7 @@ endif(NOT Boost_FOUND)
# Boost.system was introduced at Boost 1.35; it's needed secondarily by other
# Boost libs Qpid needs, so be sure it's there.
if (NOT Boost_VERSION LESS 103500)
- find_library(Boost_SYSTEM_LIBRARY, boost_system ${Boost_LIBRARY_DIRS})
+ find_library(Boost_SYSTEM_LIBRARY boost_system ${Boost_LIBRARY_DIRS})
if (NOT Boost_SYSTEM_LIBRARY)
message(FATAL_ERROR "Boost.system library not found. Please install or try setting BOOST_ROOT")
endif (NOT Boost_SYSTEM_LIBRARY)