1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

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
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");