summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2015-09-04 02:17:51 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-09-04 02:17:51 (GMT)
commit969560bddc07fe5c11470be6d2dfcc62215c8692 (patch)
tree358e8699792200b982ce524f4fbad461f0b90c97 /Makefile
parentd11448f685f5fac85daef59f8dd98c723d438fe9 (diff)
parent82aec45b7d9dd235b6a490d2c93600e13c36c40d (diff)
downloadgit-969560bddc07fe5c11470be6d2dfcc62215c8692.zip
git-969560bddc07fe5c11470be6d2dfcc62215c8692.tar.gz
git-969560bddc07fe5c11470be6d2dfcc62215c8692.tar.bz2
Merge branch 'sg/help-group' into maint
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 8c3c724..ce0cfe2 100644
--- a/Makefile
+++ b/Makefile
@@ -1696,10 +1696,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):\