commit: c98eb1d0685b1b9c9d60212477f76154fb64b083
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat May 7 06:48:36 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun May 15 01:00:03 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c98eb1d0
net-dns/pdnsd: fgrep -> grep -F
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-dns/pdnsd/pdnsd-1.2.9a-r2.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-dns/pdnsd/pdnsd-1.2.9a-r2.ebuild
b/net-dns/pdnsd/pdnsd-1.2.9a-r2.ebuild
index e22913999e9a..42ab22965ab3 100644
--- a/net-dns/pdnsd/pdnsd-1.2.9a-r2.ebuild
+++ b/net-dns/pdnsd/pdnsd-1.2.9a-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -84,7 +84,7 @@ src_test() {
dig @127.0.0.1 -p 33455 localhost > "${T}"/dig.output 2>&1
cat "${T}"/dig.output || die
- fgrep -q "status: NOERROR" "${T}"/dig.output || fail_kill
"www.gentoo.org lookup failed"
+ grep -F -q "status: NOERROR" "${T}"/dig.output || fail_kill
"www.gentoo.org lookup failed"
kill $(<"${T}/pid") || fail_kill "failed to terminate daemon"
}