Skip to content

Commit 0838e04

Browse files
author
Ivan Zhakov
committed
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
1 parent 0fd65db commit 0838e04

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build/build-modules-c.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ function(generate_builtin_modules_c output_filename module_list)
1919
foreach(module ${module_list})
2020
string(APPEND MODULES_EXTERN "extern module ${module}_module;\n")
2121
string(APPEND MODULES_PRELINK " &${module}_module,\n")
22-
string(APPEND MODULES_SYNMBOLS " {\"${module}_module\", &${module}_module},\n")
22+
string(APPEND MODULES_SYMBOLS " {\"${module}_module\", &${module}_module},\n")
2323
string(APPEND MODULES_PRELOAD " &${module}_module,\n")
2424
endforeach()
2525

build/modules.c.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ AP_DECLARE_DATA module *ap_prelinked_modules[] = {
2424
* We need the symbols as strings for <IfModule> containers
2525
*/
2626
ap_module_symbol_t ap_prelinked_module_symbols[] = {
27-
@MODULES_SYNMBOLS@
27+
@MODULES_SYMBOLS@
2828
{NULL, NULL}
2929
};
3030

0 commit comments

Comments
 (0)