diff options
author | Bernd Edlinger <bernd.edlinger@hotmail.de> | 2020-11-25 18:52:49 +0100 |
---|---|---|
committer | Bernd Edlinger <bernd.edlinger@hotmail.de> | 2020-12-04 16:34:55 +0100 |
commit | ab954e4a53cab8c33728e6708695abc1616c90b1 (patch) | |
tree | d3c0cab790e88017d433ab620b1fcf98d23df923 /gdb/doc/Makefile.in | |
parent | 10806efd8d18487a22bc2f488772cb16c8cc0b5e (diff) | |
download | gdb-ab954e4a53cab8c33728e6708695abc1616c90b1.zip gdb-ab954e4a53cab8c33728e6708695abc1616c90b1.tar.gz gdb-ab954e4a53cab8c33728e6708695abc1616c90b1.tar.bz2 |
Fix building gdb release from tar file without makeinfo
Add GDBvn.texi and version.subst to the release tar file,
so the gdb.info does not need makeinfo.
This avoids the need for makeinfo to be available.
2020-12-04 Bernd Edlinger <bernd.edlinger@hotmail.de>
* Makefile.in: Delete GDBvn.texi and version.subst only in
the maintainer-clean target.
Diffstat (limited to 'gdb/doc/Makefile.in')
-rw-r--r-- | gdb/doc/Makefile.in | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gdb/doc/Makefile.in b/gdb/doc/Makefile.in index 3d10dee..74bae01 100644 --- a/gdb/doc/Makefile.in +++ b/gdb/doc/Makefile.in @@ -231,7 +231,7 @@ Doxyfile-gdbserver: $(srcdir)/Doxyfile-gdbserver.in all-doc: info dvi ps # pdf diststuff: info man - rm -f gdb-cfg.texi GDBvn.texi + rm -f gdb-cfg.texi install-info: $(INFO_DEPS) $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(infodir) @@ -667,10 +667,9 @@ mostlyclean: rm -f $(STABS_TEX_TMPS) rm -f $(ANNOTATE_TEX_TMPS) rm -f sedref.dvi sedref.tex tmp.sed - rm -f version.subst clean: mostlyclean - rm -f gdb-cfg.texi GDBvn.texi + rm -f gdb-cfg.texi distclean: clean rm -f Makefile @@ -680,7 +679,7 @@ distclean: clean # "clean" or "distclean". Use maintainer-clean to remove them. maintainer-clean realclean: distclean - rm -f GDBvn.texi *.info* *.dvi *.ps *.html *.pdf $(MANS) + rm -f GDBvn.texi version.subst *.info* *.dvi *.ps *.html *.pdf $(MANS) install: install-info install-man |