From 01274fcb25ea0aef40aada8bf65a7761ed199cc3 Mon Sep 17 00:00:00 2001 From: Arjan van de Ven Date: Fri, 30 Dec 2016 19:18:45 +0000 Subject: [PATCH] fix lib32 misplacement --- autospec/files.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/autospec/files.py b/autospec/files.py index 8d9475f..bc26928 100644 --- a/autospec/files.py +++ b/autospec/files.py @@ -283,6 +283,8 @@ def push_file(filename): return if file_pat_match(filename, r"^/usr/lib64/.*/[a-zA-Z0-9\.\_\-\+]*\.so", "lib"): return + if file_pat_match(filename, r"^/usr/lib32/.*/[a-zA-Z0-9\.\_\-\+]*\.so", "lib32"): + return # locale data gets picked up via find_lang if file_pat_match(filename, r"^/usr/share/locale/", "ignore"):