Fix the objdump command line when the path contains spaces
diff --git a/abi-compliance-checker.pl b/abi-compliance-checker.pl
index 44aef2f..bd08cdd 100755
--- a/abi-compliance-checker.pl
+++ b/abi-compliance-checker.pl
@@ -19829,7 +19829,7 @@
     if(not $ObjdumpCmd) {
         exitStatus("Not_Found", "can't find \"objdump\"");
     }
-    my $SonameCmd = "$ObjdumpCmd -x $Path 2>$TMP_DIR/null";
+    my $SonameCmd = "$ObjdumpCmd -x \"$Path\" 2>$TMP_DIR/null";
     if($OSgroup eq "windows") {
         $SonameCmd .= " | find \"SONAME\"";
     }