diff options
author | Krzesimir Nowak <knowak@microsoft.com> | 2022-07-06 21:44:21 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-07-09 04:45:00 +0100 |
commit | 718184e68a99cad05475854c136ab4664da12dee (patch) | |
tree | 6fb3732bdad3b2d320a8aafa8164a1693eda372b | |
parent | crossdev: Take gdb variables into account (diff) | |
download | crossdev-718184e68a99cad05475854c136ab4664da12dee.tar.gz crossdev-718184e68a99cad05475854c136ab4664da12dee.tar.bz2 crossdev-718184e68a99cad05475854c136ab4664da12dee.zip |
crossdev: Fix matching of stable keywords20220709
Not sure how this worked before - in our case emerge couldn't find a
matching ebuild any more when requesting stable versions.
Signed-off-by: Krzesimir Nowak <knowak@microsoft.com>
Closes: https://github.com/gentoo/crossdev/pull/3
Signed-off-by: Sam James <sam@gentoo.org>
-rwxr-xr-x | crossdev | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1219,7 +1219,7 @@ set_links() { case "${LVER}" in "[stable]") - search_kw_string="^[~]${TARCH}" + search_kw_string="[^~]${TARCH}" ;; *) search_kw_string="${TARCH}" |