diff options
-rw-r--r-- | TODO | 1 | ||||
-rw-r--r-- | src/modules/CMakeLists.txt | 2 |
2 files changed, 1 insertions, 2 deletions
@@ -18,7 +18,6 @@ Legend: [x] Settable oper flags (split into types containing privs+commands, allow each oper to be set to a type, like we do with insp?) Outstanding issues: -- Correct CMake's auto-library search - Add some events that were not present before but useful for future versions 1.9.2 diff --git a/src/modules/CMakeLists.txt b/src/modules/CMakeLists.txt index e9863b6e3..8dc8140ab 100644 --- a/src/modules/CMakeLists.txt +++ b/src/modules/CMakeLists.txt @@ -95,7 +95,7 @@ foreach(FILE ${MODULES_FILES}) # Append this source file's linker flags to the subdirectoy's linker flags, if there are any to append if(TEMP_LDFLAGS) - append_to_list(SUBDIR_LDFLAGS ${TEMP_LDFLAGS}) + set(SUBDIR_LDFLAGS "${SUBDIR_LDFLAGS} ${TEMP_LDFLAGS}") endif(TEMP_LDFLAGS) # Append this source file's extra dependencies to the subdirector's extra dependencies, if there are any to append if(TEMP_DEPENDENCIES) |