summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2015-07-01 19:23:08 -0400
committerNat Goodspeed <nat@lindenlab.com>2015-07-01 19:23:08 -0400
commit2a29dbc48295ad24a8a7137a10b9d891debea978 (patch)
tree0b1c81aa6a90b850bcb963988b420d15b2db8e8a
parent7eaee4fde770edae6d64ddf07a917b2ae16a9928 (diff)
MAINT-5351: Reorder llmessage test libraries to make Linux happy.
Both BOOST_CONTEXT_LIBRARY and BOOST_COROUTINE_LIBRARY were mentioned. But as BOOST_COROUTINE_LIBRARY depends on BOOST_CONTEXT_LIBRARY, they must be mentioned in that order for Linux to successfully link the test programs.
-rwxr-xr-xindra/llmessage/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llmessage/CMakeLists.txt b/indra/llmessage/CMakeLists.txt
index 49f825d8f8..ba6e9d3939 100755
--- a/indra/llmessage/CMakeLists.txt
+++ b/indra/llmessage/CMakeLists.txt
@@ -256,8 +256,8 @@ if (LL_TESTS)
${LLMESSAGE_LIBRARIES}
${LLCOREHTTP_LIBRARIES}
${JSONCPP_LIBRARIES}
- ${BOOST_CONTEXT_LIBRARY}
${BOOST_COROUTINE_LIBRARY}
+ ${BOOST_CONTEXT_LIBRARY}
${GOOGLEMOCK_LIBRARIES}
)