From 5a36219e95e8388dcac1b070ccdd3fa65c8e7f76 Mon Sep 17 00:00:00 2001 From: LuK1337 Date: Wed, 6 Nov 2024 11:56:59 +0100 Subject: [PATCH] vermeer: Use common lib_fixups Change-Id: I862e547f3375184729eb1a909bb7d6f676d45dfe --- extract-files.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/extract-files.py b/extract-files.py index 3e4c0f9..ae3c90d 100755 --- a/extract-files.py +++ b/extract-files.py @@ -12,9 +12,8 @@ from extract_utils.fixups_blob import ( blob_fixups_user_type, ) from extract_utils.fixups_lib import ( - lib_fixup_vendorcompat, + lib_fixups, lib_fixups_user_type, - libs_proto_3_9_1, ) from extract_utils.main import ( ExtractUtils, @@ -33,7 +32,7 @@ def lib_fixup_odm_suffix(lib: str, partition: str, *args, **kwargs): return f'{lib}-{partition}' if partition == 'odm' else None lib_fixups: lib_fixups_user_type = { - libs_proto_3_9_1: lib_fixup_vendorcompat, + **lib_fixups, ( 'sqlite3', ): lib_fixup_odm_suffix,