diff options
author | Tsukasa OI <research_trasio@irq.a4lg.com> | 2022-10-10 09:23:16 +0000 |
---|---|---|
committer | Tsukasa OI <research_trasio@irq.a4lg.com> | 2022-10-20 00:42:13 +0000 |
commit | b64dc199b01de38858c853c434c278a51fe890cb (patch) | |
tree | 9c7b159ae92819fa1162bd01677a5673cc989c4c /binutils/doc | |
parent | f2db12c248b345c9b5ceffc30916e156721b3981 (diff) | |
download | gdb-b64dc199b01de38858c853c434c278a51fe890cb.zip gdb-b64dc199b01de38858c853c434c278a51fe890cb.tar.gz gdb-b64dc199b01de38858c853c434c278a51fe890cb.tar.bz2 |
binutils: Remove unused substitution PROGRAM
Unlike other substitution, this substitution of @PROGRAM@ was done in
binutils/Makefile and it was intended for binutils/cxxfilt.man. @PROGRAM@
in binutils/cxxfilt.man is removed in the commit 0285c67df190 ("Automate
generate on man pages") in 2001 and @PROGRAM@ is ineffective since then.
Because PROGRAM substitution does nothing, removing this manual
substitution should be completely safe.
binutils/ChangeLog:
* doc/local.mk: Remove unused substitution PROGRAM.
* Makefile.in: Regenerate.
Diffstat (limited to 'binutils/doc')
-rw-r--r-- | binutils/doc/local.mk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/binutils/doc/local.mk b/binutils/doc/local.mk index a3e0a78..4f632e8 100644 --- a/binutils/doc/local.mk +++ b/binutils/doc/local.mk @@ -169,8 +169,7 @@ MAINTAINERCLEANFILES += $(man_MANS) %D%/binutils.info %D%/cxxfilt.man else \ man=$(srcdir)/%D%/cxxfilt.man; \ fi; \ - sed -e 's/@PROGRAM@/$(DEMANGLER_NAME)/' \ - -e 's/cxxfilt/$(DEMANGLER_NAME)/' < $$man \ + sed -e 's/cxxfilt/$(DEMANGLER_NAME)/' < $$man \ > %D%/$(DEMANGLER_NAME).1 html-local: %D%/binutils/index.html |