diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-07-31 22:40:24 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-08-01 07:46:09 +0200 |
commit | cf5aa9204382ee27e94cffa6bd4b88c525c0cad5 (patch) | |
tree | dfb724df271a0f9ecd5a1c75e04394b76370bc7b /src | |
parent | 6ed3d9ed5ce5b561ff683ab0bd7906c92cd107fa (diff) |
src/makefile: fix uncompressed hugehelp.c generation
Regression from 5cf5d57ab9 (7.64.1)
Fixed-by: Lance Ware
Fixes #4176
Closes #4177
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index a26a57076..90f156248 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 |