diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2020-11-29 19:58:57 +0100 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2020-11-29 20:11:34 +0100 |
commit | d1596808dc519e3857ed2130cd25d6f5615e17d7 (patch) | |
tree | a3d262b47e8296165a8901960159feafc791de3b /app-shells | |
parent | app-shells/bash: Fix sed call for using system-readline (diff) | |
download | gentoo-d1596808dc519e3857ed2130cd25d6f5615e17d7.tar.gz gentoo-d1596808dc519e3857ed2130cd25d6f5615e17d7.tar.bz2 gentoo-d1596808dc519e3857ed2130cd25d6f5615e17d7.zip |
app-shells/bash: Added more fixes to the system-readline sed call
Bug: https://bugs.gentoo.org/757519
Package-Manager: Portage-3.0.11, Repoman-3.0.2
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/bash/bash-5.1_rc3.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app-shells/bash/bash-5.1_rc3.ebuild b/app-shells/bash/bash-5.1_rc3.ebuild index 0127d002a0db..0c6c61907b2c 100644 --- a/app-shells/bash/bash-5.1_rc3.ebuild +++ b/app-shells/bash/bash-5.1_rc3.ebuild @@ -92,7 +92,7 @@ src_prepare() { if is_release ; then rm -rf lib/{readline,termcap}/* || die touch lib/{readline,termcap}/Makefile.in || die # for config.status - sed -ri -e 's:\$[{(](RL|HIST)_LIBSRC[)}]/[[:alpha:]]*.h::g' Makefile.in || die + sed -ri -e 's:\$[{(](RL|HIST)_LIBSRC[)}]/[[:alpha:]_-]*\.h::g' Makefile.in || die fi # Prefixify hardcoded path names. No-op for non-prefix. |