We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e93259b commit 6814ba1Copy full SHA for 6814ba1
win32/build/confutils.js
@@ -2936,11 +2936,15 @@ function toolset_setup_project_tools()
2936
PATH_PROG('lemon');
2937
2938
// avoid picking up midnight commander from cygwin
2939
- PATH_PROG('mc', WshShell.Environment("Process").Item("PATH"));
+ if (!PATH_PROG('mc', WshShell.Environment("Process").Item("PATH"))) {
2940
+ ERROR('mc is required')
2941
+ }
2942
2943
// Try locating the manifest tool
2944
if (VS_TOOLSET) {
- PATH_PROG('mt', WshShell.Environment("Process").Item("PATH"));
2945
+ if (!PATH_PROG('mt', WshShell.Environment("Process").Item("PATH"))) {
2946
+ ERROR('mt is required')
2947
2948
}
2949
2950
/* Get compiler if the toolset is supported */
0 commit comments