Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Mon, 16 May 2022 23:29:50
Message-Id: 1652743729.3732ab5e6d4768c172627f39ae6269d1bf7f06c1.sam@gentoo
1 commit: 3732ab5e6d4768c172627f39ae6269d1bf7f06c1
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 7 06:47:21 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Mon May 16 23:28:49 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3732ab5e
7
8 ruby-ng.eclass: fgrep -> grep -F
9
10 Deprecated for a while but newer grep emits deprecation warnings.
11
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 eclass/ruby-ng.eclass | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17 diff --git a/eclass/ruby-ng.eclass b/eclass/ruby-ng.eclass
18 index 70cb5be74b87..f0d6c4f6f6c4 100644
19 --- a/eclass/ruby-ng.eclass
20 +++ b/eclass/ruby-ng.eclass
21 @@ -604,7 +604,7 @@ _each_ruby_check_install() {
22 # that's what changes between two implementations (otherwise you'd get false
23 # positives now that Ruby 1.9.2 installs with the same sitedir as 1.8)
24 ${scancmd} -qnR "${D}${sitelibdir}" "${D}${sitelibdir/site_ruby/gems}" \
25 - | fgrep -v "${libruby_soname}" \
26 + | grep -F -v "${libruby_soname}" \
27 | grep -E -v "${RUBY_QA_ALLOWED_LIBS}" \
28 > "${T}"/ruby-ng-${_ruby_implementation}-mislink.log