From: Daniel Stenberg Date: Wed, 31 Jul 2019 20:40:24 +0000 (+0200) Subject: src/makefile: fix uncompressed hugehelp.c generation X-Git-Tag: curl-7_66_0~177 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cf5aa9204382ee27e94cffa6bd4b88c525c0cad5;p=thirdparty%2Fcurl.git src/makefile: fix uncompressed hugehelp.c generation Regression from 5cf5d57ab9 (7.64.1) Fixed-by: Lance Ware Fixes #4176 Closes #4177 --- diff --git a/src/Makefile.am b/src/Makefile.am index a26a57076e..90f156248b 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -123,7 +123,7 @@ $(HUGE): $(MANPAGE) $(MKHELP) else # HAVE_LIBZ # This generates the tool_hugehelp.c file uncompressed only $(HUGE): $(MANPAGE) $(MKHELP) - $(HUGECMD)(echo '#include "tool_setup.h"' > $(HUGE): \ + $(HUGECMD)(echo '#include "tool_setup.h"' > $(HUGE); \ $(NROFF) $(MANPAGE) | $(PERL) $(MKHELP) >> $(HUGE) ) endif