api-support: Fix detection of similar APIs.
[libguestfs.git] / src / api-support / update-from-tarballs.sh
index 8579825..241cd16 100755 (executable)
@@ -84,7 +84,7 @@ for v in $rev_versions; do
     for sym in $symbols; do
         # If symbol is missing from the file, that indicates it
         # was added in the previous file we checked ($previous).
-        if ! grep -sq $sym $v; then
+        if ! egrep -sq \\b$sym\\b $v; then
             echo $sym $previous >&5
         else
             next_symbols="$next_symbols $sym"