diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-08-26 15:45:39 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-08-26 15:45:40 -0700 |
commit | 678c5a49ee25b55d8ba82dec9deeabf9baa3117a (patch) | |
tree | 1b1a9a327844a79bfe38c669e0718cc3b24366d1 /Makefile | |
parent | Merge branch 'sg/wt-status-header-inclusion' (diff) | |
parent | generate-cmdlist: re-implement as shell script (diff) | |
download | tgif-678c5a49ee25b55d8ba82dec9deeabf9baa3117a.tar.xz |
Merge branch 'sg/help-group'
We rewrote one of the build scripts in Perl but this reimplements
in Bourne shell.
* sg/help-group:
generate-cmdlist: re-implement as shell script
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1698,10 +1698,10 @@ $(BUILT_INS): git$X ln -s $< $@ 2>/dev/null || \ cp $< $@ -common-cmds.h: generate-cmdlist.perl command-list.txt +common-cmds.h: generate-cmdlist.sh command-list.txt common-cmds.h: $(wildcard Documentation/git-*.txt) - $(QUIET_GEN)$(PERL_PATH) generate-cmdlist.perl command-list.txt > $@+ && mv $@+ $@ + $(QUIET_GEN)./generate-cmdlist.sh command-list.txt >$@+ && mv $@+ $@ SCRIPT_DEFINES = $(SHELL_PATH_SQ):$(DIFF_SQ):$(GIT_VERSION):\ $(localedir_SQ):$(NO_CURL):$(USE_GETTEXT_SCHEME):$(SANE_TOOL_PATH_SQ):\ |