From ea57d726fc08ad9ebb907d52cf58d478450020e0 Mon Sep 17 00:00:00 2001 From: Andrea Righi Date: Wed, 4 Jan 2023 11:45:03 +0100 Subject: [PATCH] UBUNTU: [Packaging] abi-check: ignore failures when abi check is skipped Signed-off-by: Andrea Righi --- debian/scripts/checks/abi-check | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/scripts/checks/abi-check b/debian/scripts/checks/abi-check index 5bc1c935d7e0..f29ce638ff27 100755 --- a/debian/scripts/checks/abi-check +++ b/debian/scripts/checks/abi-check @@ -101,7 +101,7 @@ changed_type = 0 error = False for sym, vals in symbols.items(): # Ignore new symbols - if 'old' not in vals: + if 'old' not in vals or 'loc' not in vals: continue # Changes in location don't hurt us, but log it anyway