merge in oc-release history after reset to master
diff --git a/abi-compliance-checker.pl b/abi-compliance-checker.pl
old mode 100644
new mode 100755
index 284ebf6..b21aede
--- a/abi-compliance-checker.pl
+++ b/abi-compliance-checker.pl
@@ -22470,8 +22470,8 @@
 }
 
 sub isDump($)
-{
-    if(get_filename($_[0])=~/\A(.+)\.(abi|abidump|dump)(\.tar\.gz(\.\w+|)|\.zip|\.xml|)\Z/)
+{		# Modified to include "bdump" - binary dump.
+    if(get_filename($_[0])=~/\A(.+)\.(abi|abidump|dump|bdump)(\.tar\.gz(\.\w+|)|\.zip|\.xml|)\Z/)
     { # NOTE: name.abi.tar.gz.amd64 (dh & cdbs)
         return $1;
     }
@@ -22479,8 +22479,8 @@
 }
 
 sub isDump_U($)
-{
-    if(get_filename($_[0])=~/\A(.+)\.(abi|abidump|dump)(\.xml|)\Z/) {
+{		# Modified to include "bdump" - binary dump.
+    if(get_filename($_[0])=~/\A(.+)\.(abi|abidump|dump|bdump)(\.xml|)\Z/) {
         return $1;
     }
     return 0;