Skip to content

Commit d09cc33

Browse files
authored
Fix typo in "private" function name (Windows configuration) (GH-17069)
This typo is particularly annoying if you search for "ldflags", because you won't find this function.
1 parent fc48fd8 commit d09cc33

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

win32/build/config.w32

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ if (VS_TOOLSET) {
9393
}
9494

9595
// General link flags
96-
toolset_setup_common_ldlags();
96+
toolset_setup_common_ldflags();
9797

9898
// General libs
9999
toolset_setup_common_libs();

win32/build/config.w32.phpize.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ if (VS_TOOLSET && PHP_MP != 'disable') {
6767
ARG_WITH("snapshot-template", "Path to snapshot builder template dir", "no");
6868

6969
// General link flags
70-
toolset_setup_common_ldlags();
70+
toolset_setup_common_ldflags();
7171

7272
// General libs
7373
toolset_setup_common_libs();

win32/build/confutils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3388,7 +3388,7 @@ function toolset_setup_intrinsic_cflags()
33883388
}
33893389
}
33903390

3391-
function toolset_setup_common_ldlags()
3391+
function toolset_setup_common_ldflags()
33923392
{
33933393
var envLDFLAGS = WshShell.Environment("PROCESS").Item("LDFLAGS");
33943394

0 commit comments

Comments
 (0)