]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Follow-up to r1919587: CMake: Fix type in variable name (MODULES_SYNMBOLS -> MODULES_...
authorIvan Zhakov <ivan@apache.org>
Wed, 31 Jul 2024 12:25:40 +0000 (12:25 +0000)
committerIvan Zhakov <ivan@apache.org>
Wed, 31 Jul 2024 12:25:40 +0000 (12:25 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1919602 13f79535-47bb-0310-9956-ffa450edef68

build/build-modules-c.cmake
build/modules.c.in

index 1d005bd9b1edee3d8ce1ab4ed841e492d851f37f..491ff3cd51f54920b1d8915b3e04c5fd223fa5c8 100644 (file)
@@ -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()
 
index c811d0d444042448eb1983762d9d2247e83541f5..fa0a9faa2ec29b3c9b575d733033e19ace9d4e70 100644 (file)
@@ -24,7 +24,7 @@ AP_DECLARE_DATA module *ap_prelinked_modules[] = {
  *  We need the symbols as strings for <IfModule> containers\r
  */\r
 ap_module_symbol_t ap_prelinked_module_symbols[] = {\r
-@MODULES_SYNMBOLS@\r
+@MODULES_SYMBOLS@\r
   {NULL, NULL}\r
 };\r
 \r