From: Ivan Zhakov Date: Wed, 31 Jul 2024 12:25:40 +0000 (+0000) Subject: Follow-up to r1919587: CMake: Fix type in variable name (MODULES_SYNMBOLS -> MODULES_... X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0838e04da443bc9c76c3f12b7b67f1fedd7a9581;p=thirdparty%2Fapache%2Fhttpd.git Follow-up to r1919587: CMake: Fix type in variable name (MODULES_SYNMBOLS -> MODULES_SYMBOLS) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1919602 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/build/build-modules-c.cmake b/build/build-modules-c.cmake index 1d005bd9b1e..491ff3cd51f 100644 --- a/build/build-modules-c.cmake +++ b/build/build-modules-c.cmake @@ -19,7 +19,7 @@ function(generate_builtin_modules_c output_filename module_list) foreach(module ${module_list}) string(APPEND MODULES_EXTERN "extern module ${module}_module;\n") string(APPEND MODULES_PRELINK " &${module}_module,\n") - string(APPEND MODULES_SYNMBOLS " {\"${module}_module\", &${module}_module},\n") + string(APPEND MODULES_SYMBOLS " {\"${module}_module\", &${module}_module},\n") string(APPEND MODULES_PRELOAD " &${module}_module,\n") endforeach() diff --git a/build/modules.c.in b/build/modules.c.in index c811d0d4440..fa0a9faa2ec 100644 --- a/build/modules.c.in +++ b/build/modules.c.in @@ -24,7 +24,7 @@ AP_DECLARE_DATA module *ap_prelinked_modules[] = { * We need the symbols as strings for containers */ ap_module_symbol_t ap_prelinked_module_symbols[] = { -@MODULES_SYNMBOLS@ +@MODULES_SYMBOLS@ {NULL, NULL} };