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.
This commit is contained in:
Christoph M. Becker 2024-12-06 23:42:15 +01:00 committed by GitHub
parent fc48fd8653
commit d09cc33190
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View file

@ -93,7 +93,7 @@ if (VS_TOOLSET) {
}
// General link flags
toolset_setup_common_ldlags();
toolset_setup_common_ldflags();
// General libs
toolset_setup_common_libs();

View file

@ -67,7 +67,7 @@ if (VS_TOOLSET && PHP_MP != 'disable') {
ARG_WITH("snapshot-template", "Path to snapshot builder template dir", "no");
// General link flags
toolset_setup_common_ldlags();
toolset_setup_common_ldflags();
// General libs
toolset_setup_common_libs();

View file

@ -3388,7 +3388,7 @@ function toolset_setup_intrinsic_cflags()
}
}
function toolset_setup_common_ldlags()
function toolset_setup_common_ldflags()
{
var envLDFLAGS = WshShell.Environment("PROCESS").Item("LDFLAGS");