improve paths to lib dirs for RAR plugins search

This commit is contained in:
Vitaly Lipatov 2015-11-21 14:11:55 +03:00
parent dcf715b826
commit d01d6c738f
1 changed files with 1 additions and 1 deletions

View File

@ -575,7 +575,7 @@ def p7zip_supports_rar():
# the subdirectory and codec name # the subdirectory and codec name
codecname = 'p7zip/Codecs/Rar29.so' codecname = 'p7zip/Codecs/Rar29.so'
# search canonical user library dirs # search canonical user library dirs
for libdir in ('/usr/lib', '/usr/local/lib'): for libdir in ('/usr/lib', '/usr/local/lib', '/usr/lib64', '/usr/local/lib64', '/usr/lib/i386-linux-gnu', '/usr/lib/x86_64-linux-gnu'):
fname = os.path.join(libdir, codecname) fname = os.path.join(libdir, codecname)
if os.path.exists(fname): if os.path.exists(fname):
return True return True