summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CMakeLists.txt4
-rw-r--r--functions.cmake2
2 files changed, 3 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 0466e97ec4f..6e9ef34c3c5 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -118,8 +118,8 @@ add_subdirectory(vespamalloc)
add_subdirectory(vsm)
add_subdirectory(zkfacade)
-# Add any auxilliary projects
-add_auxilliary_modules()
+# Add any extra projects
+add_extra_projects()
# Create module targets with name ${MODULE}+module depending on every target defined within that module
__create_module_targets(TARGETS "module")
diff --git a/functions.cmake b/functions.cmake
index 2903688573d..6a1eb1906df 100644
--- a/functions.cmake
+++ b/functions.cmake
@@ -562,7 +562,7 @@ function(install_symlink TARGET LINK)
install(CODE "execute_process(COMMAND ln -sf ${CMAKE_INSTALL_PREFIX}/${TARGET} \$ENV{DESTDIR}/${CMAKE_INSTALL_PREFIX}/${LINK})")
endfunction(install_symlink)
-function(add_auxilliary_modules)
+function(add_extra_projects)
if(EXTRA_PROJECTS)
foreach(PROJECT ${EXTRA_PROJECTS})
get_filename_component(RELDIR ${PROJECT} NAME)