1
0
mirror of https://github.com/php/php-src.git synced 2026-04-30 03:33:17 +02:00

Don't add empty include path

This commit is contained in:
Anatol Belski
2018-02-19 14:15:33 +01:00
parent 20934d9e18
commit 250df53204
+3
View File
@@ -1690,6 +1690,9 @@ function ADD_SOURCES(dir, file_list, target, obj_dir)
var vc_incs = WshShell.Environment("Process").Item("INCLUDE").split(";")
for (i in vc_incs) {
if (!vc_incs[i].length) {
continue;
}
analyzer_base_flags += " -I " + "\"" + vc_incs[i] + "\"";
}