summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2015-08-26 22:45:39 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-08-26 22:45:40 (GMT)
commit678c5a49ee25b55d8ba82dec9deeabf9baa3117a (patch)
tree1b1a9a327844a79bfe38c669e0718cc3b24366d1 /Makefile
parent65254961729026a7ea6904eafecf52fb99bd3769 (diff)
parent82aec45b7d9dd235b6a490d2c93600e13c36c40d (diff)
downloadgit-678c5a49ee25b55d8ba82dec9deeabf9baa3117a.zip
git-678c5a49ee25b55d8ba82dec9deeabf9baa3117a.tar.gz
git-678c5a49ee25b55d8ba82dec9deeabf9baa3117a.tar.bz2
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--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 704f7e7..34101e2 100644
--- a/Makefile
+++ b/Makefile
@@ -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):\