aboutsummaryrefslogtreecommitdiffstats
path: root/tools/compare-abis.sh
diff options
context:
space:
mode:
authorBalint Reczey <balint@balintreczey.hu>2013-09-10 11:10:00 +0000
committerBalint Reczey <balint@balintreczey.hu>2013-09-10 11:10:00 +0000
commited31edea017422b21bcd5b358fd4796009dd55f1 (patch)
tree8ee87dd4ced0697d47c4a1fc75282ab770622353 /tools/compare-abis.sh
parent152a9c5982af1d3c389cc71a58254babc826a507 (diff)
Make compare-abis.sh work with versions having multiple digits in version number
svn path=/trunk/; revision=51927
Diffstat (limited to 'tools/compare-abis.sh')
-rwxr-xr-xtools/compare-abis.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/compare-abis.sh b/tools/compare-abis.sh
index 6b5e90b9fa..6a308162ce 100755
--- a/tools/compare-abis.sh
+++ b/tools/compare-abis.sh
@@ -36,9 +36,9 @@ function acc () {
-d2 $V2_PATH/$DIR/$REL_DUMP_PATH/$LIBNAME.abi.tar.gz ; then
abi-compliance-checker -l $LIBNAME \
-d1 $V1_PATH/$DIR/abi-descriptor.xml -relpath1 $V1_PATH/$DIR \
- -v1 `ls $V1_PATH/$DIR/$REL_LIB_PATH/$LIBNAME.so.?.?.?|sed 's/.*\.so\.//'` \
+ -v1 `ls $V1_PATH/$DIR/$REL_LIB_PATH/$LIBNAME.so.?.*.*|sed 's/.*\.so\.//'` \
-d2 $V2_PATH/$DIR/abi-descriptor.xml -relpath2 $V2_PATH/$DIR \
- -v2 `ls $V2_PATH/$DIR/$REL_LIB_PATH/$LIBNAME.so.?.?.?|sed 's/.*\.so\.//'` \
+ -v2 `ls $V2_PATH/$DIR/$REL_LIB_PATH/$LIBNAME.so.?.*.*|sed 's/.*\.so\.//'` \
-check-implementation
fi
}