diff options
author | Junio C Hamano <gitster@pobox.com> | 2022-04-06 15:21:58 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-04-06 15:21:58 -0700 |
commit | 0f0303a479477cfd4f766bdfb955c7f2ebe9227a (patch) | |
tree | cd635dcbf1f853b4768f10ec94f9c14b4c171eea /Documentation | |
parent | Git 2.36-rc0 (diff) | |
parent | contrib/scalar: fix 'all' target in Makefile (diff) | |
download | tgif-0f0303a479477cfd4f766bdfb955c7f2ebe9227a.tar.xz |
Merge branch 'ab/make-optim-noop'
A micro fix to a topic earlier merged to 'master'
source: <patch-1.1-05949221e3f-20220319T002715Z-avarab@gmail.com>
* ab/make-optim-noop:
contrib/scalar: fix 'all' target in Makefile
Documentation/Makefile: fix "make info" regression in dad9cd7d518
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/Makefile b/Documentation/Makefile index 1eb9192dae..44c080e3e5 100644 --- a/Documentation/Makefile +++ b/Documentation/Makefile @@ -390,7 +390,7 @@ gitman.texi: $(MAN_XML) cat-texi.perl texi.xsl $(RM) $@+ gitman.info: gitman.texi - $(QUIET_MAKEINFO)$(MAKEINFO) --no-split --no-validate $*.texi + $(QUIET_MAKEINFO)$(MAKEINFO) --no-split --no-validate $< $(patsubst %.txt,%.texi,$(MAN_TXT)): %.texi : %.xml $(QUIET_DB2TEXI)$(DOCBOOK2X_TEXI) --to-stdout $*.xml >$@ |