commit: 3732ab5e6d4768c172627f39ae6269d1bf7f06c1
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat May 7 06:47:21 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon May 16 23:28:49 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3732ab5e
ruby-ng.eclass: fgrep -> grep -F
Deprecated for a while but newer grep emits deprecation warnings.
Signed-off-by: Sam James <sam <AT> gentoo.org>
eclass/ruby-ng.eclass | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/eclass/ruby-ng.eclass b/eclass/ruby-ng.eclass
index 70cb5be74b87..f0d6c4f6f6c4 100644
--- a/eclass/ruby-ng.eclass
+++ b/eclass/ruby-ng.eclass
@@ -604,7 +604,7 @@ _each_ruby_check_install() {
# that's what changes between two implementations (otherwise you'd get
false
# positives now that Ruby 1.9.2 installs with the same sitedir as 1.8)
${scancmd} -qnR "${D}${sitelibdir}" "${D}${sitelibdir/site_ruby/gems}" \
- | fgrep -v "${libruby_soname}" \
+ | grep -F -v "${libruby_soname}" \
| grep -E -v "${RUBY_QA_ALLOWED_LIBS}" \
> "${T}"/ruby-ng-${_ruby_implementation}-mislink.log