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 e7ce7c6 + 6814ba1 commit 95c8f67Copy full SHA for 95c8f67
win32/build/confutils.js
@@ -3019,11 +3019,15 @@ function toolset_setup_project_tools()
3019
PATH_PROG('7za');
3020
3021
// avoid picking up midnight commander from cygwin
3022
- PATH_PROG('mc', WshShell.Environment("Process").Item("PATH"));
+ if (!PATH_PROG('mc', WshShell.Environment("Process").Item("PATH"))) {
3023
+ ERROR('mc is required')
3024
+ }
3025
3026
// Try locating the manifest tool
3027
if (VS_TOOLSET) {
- PATH_PROG('mt', WshShell.Environment("Process").Item("PATH"));
3028
+ if (!PATH_PROG('mt', WshShell.Environment("Process").Item("PATH"))) {
3029
+ ERROR('mt is required')
3030
3031
}
3032
3033
/* Get compiler if the toolset is supported */
0 commit comments