Fix path to ABI reference file for build check

This has been broken since the changes to version mangling for 3.1.

svn path=/dists/trunk/linux-2.6/; revision=18641
This commit is contained in:
Ben Hutchings 2012-01-27 04:59:27 +00:00
parent 221a989e1c
commit cc34c3daef
1 changed files with 2 additions and 4 deletions

View File

@ -44,10 +44,8 @@ class CheckAbi(object):
self.filename_new = "%s/Module.symvers" % dir
changelog = Changelog(version=VersionLinux)[0]
version = changelog.version.linux_version
abiname = self.config['abi', ]['abiname']
self.filename_ref = "debian/abi/%s-%s/%s_%s_%s" % (version, abiname, arch, featureset, flavour)
version_abi = self.config['version', ]['abiname']
self.filename_ref = "debian/abi/%s/%s_%s_%s" % (version_abi, arch, featureset, flavour)
def __call__(self, out):
ret = 0