diff options
author | 2022-05-07 07:47:21 +0100 | |
---|---|---|
committer | 2022-05-16 23:28:49 +0000 | |
commit | 3732ab5e6d4768c172627f39ae6269d1bf7f06c1 (patch) | |
tree | 400b9ba62071af09251d23c0e28cdc111492f1a9 /eclass/ruby-ng.eclass | |
parent | haskell-cabal.eclass: egrep -> grep -E (diff) | |
download | gentoo-3732ab5e6d4768c172627f39ae6269d1bf7f06c1.tar.gz gentoo-3732ab5e6d4768c172627f39ae6269d1bf7f06c1.tar.bz2 gentoo-3732ab5e6d4768c172627f39ae6269d1bf7f06c1.zip |
ruby-ng.eclass: fgrep -> grep -F
Deprecated for a while but newer grep emits deprecation warnings.
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass/ruby-ng.eclass')
-rw-r--r-- | eclass/ruby-ng.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
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 |