Blame SOURCES/redhat-rpm-config-9.1.0-find-provides.libtool.patch

76c1b9
--- redhat-rpm-config-9.1.0/find-provides.libtool.orig	2016-05-11 14:36:17.082744500 +0200
76c1b9
+++ redhat-rpm-config-9.1.0/find-provides.libtool	2016-05-11 14:38:49.404192547 +0200
76c1b9
@@ -2,9 +2,9 @@
76c1b9
 while read possible ; do
76c1b9
 	case "$possible" in
76c1b9
 	*.la)
76c1b9
-		if grep -iq '^# Generated by ltmain.sh' "$possible" 2> /dev/null ; then
76c1b9
-			echo "libtool($possible)"
76c1b9
-		fi
76c1b9
+	    if grep -Eiq '^# Generated by (libtool|ltmain.sh)' "$possible" 2> /dev/null ; then
76c1b9
+		echo "libtool($possible)"
76c1b9
+	    fi
76c1b9
 		;;
76c1b9
 	esac
76c1b9
 done