diff options
author | Mike Gilbert <floppym@gentoo.org> | 2022-07-30 18:39:16 -0400 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2022-07-31 12:55:01 -0400 |
commit | c2204cc82792abe8ba280740fb441d440ceb5055 (patch) | |
tree | 8da360c32827a7577d5eb111384a1f2506ebf4cd /app-shells/bash/bash-9999.ebuild | |
parent | app-portage/metagen: keyword 0.7.3-r1 for ~riscv (diff) | |
download | gentoo-c2204cc82792abe8ba280740fb441d440ceb5055.tar.gz gentoo-c2204cc82792abe8ba280740fb441d440ceb5055.tar.bz2 gentoo-c2204cc82792abe8ba280740fb441d440ceb5055.zip |
app-shells/bash: rename builtins.1 to bash_builtins.1
This seems to be the intended name based on doc/Makefile.in.
This also fixes a rendering issue when the man pages are viewed with
mandoc.
Closes: https://github.com/gentoo/gentoo/pull/26669
Closes: https://github.com/gentoo/gentoo/pull/26673
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
Diffstat (limited to 'app-shells/bash/bash-9999.ebuild')
-rw-r--r-- | app-shells/bash/bash-9999.ebuild | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app-shells/bash/bash-9999.ebuild b/app-shells/bash/bash-9999.ebuild index 6e82b8f94a03..065cb2bc6dee 100644 --- a/app-shells/bash/bash-9999.ebuild +++ b/app-shells/bash/bash-9999.ebuild @@ -294,7 +294,11 @@ src_install() { done fi - doman doc/*.1 + # Install bash_builtins.1 and rbash.1 + emake -C doc DESTDIR="${D}" install_builtins + sed 's:bash\.1:man1/&:' doc/rbash.1 > "${T}"/rbash.1 || die + doman "${T}"/rbash.1 + newdoc CWRU/changelog ChangeLog dosym bash.info /usr/share/info/bashref.info } |