From 4177f52877b780ac2fa6279d2f257a32a56eb7d1 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Sun, 20 Aug 2023 11:24:30 +0200 Subject: [PATCH] also disable the python3 lldb binding on bionic --- debian/rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/rules b/debian/rules index 12876980..222e60bf 100755 --- a/debian/rules +++ b/debian/rules @@ -1200,7 +1200,7 @@ endif # Disable the python binding for buster. not sure why it regressed # regressed de4364f1ecaa..0745b0c0354a - if test "$(DISTRO)" = "buster"; then \ + if test "$(DISTRO)" = "buster" -o "$(DISTRO)" = "bionic"; then \ mkdir -p $(DEB_INST)/usr/lib/llvm-$(LLVM_VERSION)/share/gdb/python/ompd/; \ touch $(DEB_INST)/usr/lib/llvm-$(LLVM_VERSION)/share/gdb/python/ompd/empty; \ echo "" > debian/python3-lldb-$(LLVM_VERSION).install; \