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.
2 parents dd69115 + a526a6b commit dbcdf85Copy full SHA for dbcdf85
win32/build/confutils.js
@@ -3044,11 +3044,15 @@ function toolset_setup_project_tools()
3044
PATH_PROG('7za');
3045
3046
// avoid picking up midnight commander from cygwin
3047
- PATH_PROG('mc', WshShell.Environment("Process").Item("PATH"));
+ if (!PATH_PROG('mc', WshShell.Environment("Process").Item("PATH"))) {
3048
+ ERROR('mc is required')
3049
+ }
3050
3051
// Try locating the manifest tool
3052
if (VS_TOOLSET) {
- PATH_PROG('mt', WshShell.Environment("Process").Item("PATH"));
3053
+ if (!PATH_PROG('mt', WshShell.Environment("Process").Item("PATH"))) {
3054
+ ERROR('mt is required')
3055
3056
}
3057
3058
/* Get compiler if the toolset is supported */
0 commit comments