diff options
author | Simon Warta <simon@kullo.net> | 2017-06-19 10:50:18 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-06-19 12:28:39 +0200 |
commit | 8621b610454482e3b0ad1296e79adfc3158c0010 (patch) | |
tree | 80966978e9bf36a69b18dd28baeddb4073cf2878 | |
parent | fb470a2e40647160abcfd7664c55e75047a0c154 (diff) |
automake: use $(MKHELP) variable instead if constant mkhelp.pl
this improves symmetry with the rule above
-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 9c20e3445..7b4835953 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -116,7 +116,7 @@ $(HUGE): $(MANPAGE) $(README) $(MKHELP) echo '#endif /* HAVE_LIBZ */' >> $(HUGE) else # HAVE_LIBZ # This generates the tool_hugehelp.c file uncompressed only -$(HUGE): $(MANPAGE) $(README) mkhelp.pl +$(HUGE): $(MANPAGE) $(README) $(MKHELP) echo '#include "tool_setup.h"' > $(HUGE) $(NROFF) $(MANPAGE) | $(PERL) $(MKHELP) $(README) >> $(HUGE) endif |