mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Don't add empty include path
This commit is contained in:
parent
20934d9e18
commit
250df53204
1 changed files with 3 additions and 0 deletions
|
@ -1690,6 +1690,9 @@ function ADD_SOURCES(dir, file_list, target, obj_dir)
|
||||||
|
|
||||||
var vc_incs = WshShell.Environment("Process").Item("INCLUDE").split(";")
|
var vc_incs = WshShell.Environment("Process").Item("INCLUDE").split(";")
|
||||||
for (i in vc_incs) {
|
for (i in vc_incs) {
|
||||||
|
if (!vc_incs[i].length) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
analyzer_base_flags += " -I " + "\"" + vc_incs[i] + "\"";
|
analyzer_base_flags += " -I " + "\"" + vc_incs[i] + "\"";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue