SHA256
1
0
forked from pool/rpmlint
Dirk Mueller 2017-09-28 20:40:41 +00:00 committed by Git OBS Bridge
parent 608ba7ddde
commit 7aa2b48d0f

View File

@ -16,7 +16,7 @@ Index: rpmlint-rpmlint-1.10/TagsCheck.py
has_pc = True
if has_so:
- base_or_libs = base + '/' + base + '-libs/lib' + base
+ base_or_libs = base + '/' + base + '-libs/lib' + base + '*'
+ base_or_libs = base + '*' + '/' + base + '-libs/lib' + base + '*'
# try to match *%_isa as well (e.g. "(x86-64)", "(x86-32)")
base_or_libs_re = re.compile(
- r'^(lib)?%s(-libs)?(\(\w+-\d+\))?$' % re.escape(base))