aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Ponomarenko <aponomarenko@rosalab.ru>2014-02-06 23:20:09 -0800
committerAndrey Ponomarenko <aponomarenko@rosalab.ru>2014-02-06 23:20:09 -0800
commit93840ff3301d6a797165f1f799ca5268a6a64506 (patch)
treea9b029bf860c09f364d26ed0413c7eac34d35573
parentd59580888a06555261f3d4255d9c2cfcb408a51a (diff)
parenta914cb546e74ff89ff5038d0a57d6e7032617d80 (diff)
downloadabi-compliance-checker-93840ff3301d6a797165f1f799ca5268a6a64506.tar.gz
Merge pull request #8 from L3n41c/master
Fix the objdump command line when the path contains spaces
-rwxr-xr-xabi-compliance-checker.pl2
1 files changed, 1 insertions, 1 deletions
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 @@ sub getSONAME($)
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\"";
}