summaryrefslogtreecommitdiff
path: root/dev-libs/libksba/files/libksba-1.6.0-no-fgrep-ksba-config.patch
blob: 7c5f7e85cd0d04dd4c72c73868c26a48d594cd89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
https://bugs.gentoo.org/868384
--- a/src/ksba-config.in
+++ b/src/ksba-config.in
@@ -126,7 +126,7 @@ if test "$echo_cflags" = "yes"; then
     fi
     tmp=""
     for i in $includes $cflags; do
-       if echo "$tmp" | fgrep -v -- "$i" >/dev/null; then
+       if echo "$tmp" | grep -F -v -- "$i" >/dev/null; then
            tmp="$tmp $i"
        fi
     done
@@ -140,7 +140,7 @@ if test "$echo_libs" = "yes"; then
     fi
     tmp=""
     for i in $libdirs $libs; do
-       if echo "$tmp" | fgrep -v -- "$i" >/dev/null; then
+       if echo "$tmp" | grep -F -v -- "$i" >/dev/null; then
            tmp="$tmp $i"
        fi
     done