https://bugzilla.novell.com/show_bug.cgi?id=807155 https://bugzilla.novell.com/show_bug.cgi?id=807155#c3 --- Comment #3 from Marcus Meissner <meissner@suse.com> 2013-03-02 12:33:51 UTC --- rpmlint-1.4/rpmlint-checks-master/LibraryPolicyCheck.py has this piece of code which should trigger for all architectures here, as you only have this 1 shared library in xtables-addons in std_dirs: # If this package should be or should be splitted into shlib # package(s) if len(libs) > 0 and len(std_dirs) > 0: # If the package contains a single shlib, name after soname if len(libs) == 1: soname = libs.copy().pop() libname = libname_from_soname (soname) if libname.startswith('lib') and pkg.name != libname and \ pkg.name != libname + "-mini": if libname in _policy_legacy_exceptions: printWarning(pkg, 'shlib-legacy-policy-name-error', libname) else: printError(pkg, 'shlib-policy-name-error', libname) elif not pkg.name[-1:].isdigit(): printError(pkg, 'shlib-policy-missing-suffix') -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.