diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2020-11-29 20:03:55 +0100 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2020-11-29 20:11:35 +0100 |
commit | ba04c1e8c19c6e32fbb04705db227aeed983e8d9 (patch) | |
tree | 6935f2171f133604ab530dfb484768c975c234ab /app-shells/bash/bash-3.1_p23.ebuild | |
parent | app-shells/bash: Added more fixes to the system-readline sed call (diff) | |
download | gentoo-ba04c1e8c19c6e32fbb04705db227aeed983e8d9.tar.gz gentoo-ba04c1e8c19c6e32fbb04705db227aeed983e8d9.tar.bz2 gentoo-ba04c1e8c19c6e32fbb04705db227aeed983e8d9.zip |
app-shells/bash: Backport system-readline sed fixes
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/bash/bash-3.1_p23.ebuild')
-rw-r--r-- | app-shells/bash/bash-3.1_p23.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app-shells/bash/bash-3.1_p23.ebuild b/app-shells/bash/bash-3.1_p23.ebuild index ad1a7e46c428..cf6a8d6a93cb 100644 --- a/app-shells/bash/bash-3.1_p23.ebuild +++ b/app-shells/bash/bash-3.1_p23.ebuild @@ -76,7 +76,7 @@ src_prepare() { # Clean out local libs so we know we use system ones 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 default } |