summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorNaram Qashat <cyberbotx@cyberbotx.com>2011-12-03 19:17:41 -0500
committerNaram Qashat <cyberbotx@cyberbotx.com>2011-12-03 19:17:41 -0500
commitc80e7844b7fc76de944e338dd0c2634df054cf44 (patch)
tree02b8815787d9a98df50eca57bb966cd24db1d516 /cmake
parent620c08bd7a438126439310a66df539af015bddf0 (diff)
Attempt to fix issue with modules having their link libraries in the wrong order.
Diffstat (limited to 'cmake')
-rw-r--r--cmake/Anope.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/Anope.cmake b/cmake/Anope.cmake
index 205a59631..26ed3926a 100644
--- a/cmake/Anope.cmake
+++ b/cmake/Anope.cmake
@@ -479,7 +479,7 @@ macro(calculate_libraries SRC SKIP SRC_LDFLAGS EXTRA_DEPENDS)
endforeach(LIBRARY_PATH)
# Iterate through libraries and add them to the linker flags
foreach(LIBRARY ${LIBRARIES})
- set(THIS_LDFLAGS "${THIS_LDFLAGS} -l${LIBRARY}")
+ append_to_list(EXTRA_DEPENDENCIES "${LIBRARY}")
endforeach(LIBRARY)
set(${SRC_LDFLAGS} "${THIS_LDFLAGS}")
set(${EXTRA_DEPENDS} "${EXTRA_DEPENDENCIES}")