summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2015-09-03 19:17:51 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2015-09-03 19:17:51 -0700
commit969560bddc07fe5c11470be6d2dfcc62215c8692 (patch)
tree358e8699792200b982ce524f4fbad461f0b90c97 /Makefile
parentMerge branch 'ps/t1509-chroot-test-fixup' into maint (diff)
parentgenerate-cmdlist: re-implement as shell script (diff)
downloadtgif-969560bddc07fe5c11470be6d2dfcc62215c8692.tar.xz
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 8c3c724a7f..ce0cfe2a48 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):\