aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey V. Ponomarenko <andrei.moscow@mail.ru>2016-01-28 16:44:40 +0300
committerAndrey V. Ponomarenko <andrei.moscow@mail.ru>2016-01-28 16:44:40 +0300
commit109e3ae1c919dfe9a6b4cedbb3c45ba70659ea8a (patch)
tree125309af2dae744128ca82243abd8bd949bc2547
parente3419b4a6666e1a56a0b3d34449f8bd0f73b11a9 (diff)
parent01e4122eddc2eef906a8032a358c05476349146f (diff)
downloadabi-compliance-checker-109e3ae1c919dfe9a6b4cedbb3c45ba70659ea8a.tar.gz
Merge pull request #32 from ellert/hurd
Fixed GNU/Hurd support
-rw-r--r--abi-compliance-checker.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/abi-compliance-checker.pl b/abi-compliance-checker.pl
index a6ce328..6f14454 100644
--- a/abi-compliance-checker.pl
+++ b/abi-compliance-checker.pl
@@ -19520,7 +19520,7 @@ sub registerObject($$)
my $Name = get_filename($Path);
$RegisteredObjects{$LibVersion}{$Name} = $Path;
- if($OStarget=~/linux|bsd/i)
+ if($OStarget=~/linux|bsd|gnu/i)
{
if(my $SONAME = getSONAME($Path)) {
$RegisteredSONAMEs{$LibVersion}{$SONAME} = $Path;
@@ -19582,7 +19582,7 @@ sub getArch_Object($)
}
}
}
- elsif($OStarget=~/linux|bsd/)
+ elsif($OStarget=~/linux|bsd|gnu/)
{
my $ObjdumpCmd = get_CmdPath("objdump");
if(not $ObjdumpCmd) {