Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Apply the following changes to "winbuild/Makefile.vc" to fix build errors when AppLocker or SAFER alias Software Restriction Policies are in effect
--- curl-7.58.0/winbuild/Makefile.vc 2018-01-22 09:55 +++ curl-patch/winbuild/Makefile.vc @@ -251,1 +251,1 @@ - @gen_resp_file.bat $(LIBCURL_OBJS) + @CALL gen_resp_file.bat $(LIBCURL_OBJS)
--- curl-7.58.0/winbuild/Makefile.vc 2018-01-22 09:55 +++ curl-patch/winbuild/Makefile.vc @@ -256,1 +256,1 @@ - @gen_resp_file.bat $(CURL_OBJS) + @CALL gen_resp_file.bat $(CURL_OBJS)
Always use CALL to run batch scripts!
The text was updated successfully, but these errors were encountered:
Looks good to me. Would you create a PR?
Sorry, something went wrong.
4fff37b
No branches or pull requests
Over Here @bagder noted (channelling Stefan Kanthak):
Apply the following changes to "winbuild/Makefile.vc" to fix build errors when AppLocker or SAFER alias Software Restriction Policies are in effect
Always use CALL to run batch scripts!
The text was updated successfully, but these errors were encountered: