mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02: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:
parent
fc48fd8653
commit
d09cc33190
3 changed files with 3 additions and 3 deletions
|
@ -93,7 +93,7 @@ if (VS_TOOLSET) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// General link flags
|
// General link flags
|
||||||
toolset_setup_common_ldlags();
|
toolset_setup_common_ldflags();
|
||||||
|
|
||||||
// General libs
|
// General libs
|
||||||
toolset_setup_common_libs();
|
toolset_setup_common_libs();
|
||||||
|
|
|
@ -67,7 +67,7 @@ if (VS_TOOLSET && PHP_MP != 'disable') {
|
||||||
ARG_WITH("snapshot-template", "Path to snapshot builder template dir", "no");
|
ARG_WITH("snapshot-template", "Path to snapshot builder template dir", "no");
|
||||||
|
|
||||||
// General link flags
|
// General link flags
|
||||||
toolset_setup_common_ldlags();
|
toolset_setup_common_ldflags();
|
||||||
|
|
||||||
// General libs
|
// General libs
|
||||||
toolset_setup_common_libs();
|
toolset_setup_common_libs();
|
||||||
|
|
|
@ -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");
|
var envLDFLAGS = WshShell.Environment("PROCESS").Item("LDFLAGS");
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue