The colon near the end of the line causes it to create a file named "tool_hugehelp.c:", which is not what is intended. Changing the colon character to a semicolon fixes the problem:
Ack, seems accurate. And you trigger this because you build without libz present, which clearly is pretty unusual since this regression was done in 5cf5d57 (7.64.1) on March 14 2019...
Attempting build of cURL 7.65.3 on Red Hat Enterprise Linux 6 machine fails with following messages:
After some investigation I found that this line in src/Makefile.in is the culprit:
@HAVE_LIBZ_FALSE@@USE_MANUAL_TRUE@ $(HUGECMD)(echo '#include "tool_setup.h"' > $(HUGE): \
The colon near the end of the line causes it to create a file named "tool_hugehelp.c:", which is not what is intended. Changing the colon character to a semicolon fixes the problem:
@HAVE_LIBZ_FALSE@@USE_MANUAL_TRUE@ $(HUGECMD)(echo '#include "tool_setup.h"' > $(HUGE); \
The text was updated successfully, but these errors were encountered: