debian/lib/python/debian_linux.py: Add workaround for broken abiname handling.

svn path=/dists/trunk/linux-2.6/; revision=4605
This commit is contained in:
Bastian Blank 2005-10-23 11:06:24 +00:00
parent bb7b157a14
commit d529edbcfc
1 changed files with 2 additions and 0 deletions

View File

@ -34,6 +34,8 @@ class config(dict):
ret = {}
ret.update(super(config, self).__getitem__('base'))
if len(key) >= 1:
# XXX: workaround
del ret['abiname']
del ret['arches']
ret.update(super(config, self).__getitem__(key[0]))
if len(key) >= 2: