Skip to content

Commit c6137d2

Browse files
committed
Update Python version in LLVM fix
After upgrading to Ubuntu 24.04, the Python version in the LLVM fix needs to be updated.
1 parent 5b68835 commit c6137d2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ansible/roles/dev-desktop/tasks/fix_llvm_55575.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66

77
- name: Find all lldb Python files
88
ansible.builtin.find:
9-
paths: /usr/lib/llvm-14/lib/python3.10/dist-packages/lldb
9+
paths: /usr/lib/llvm-14/lib/python3.12/dist-packages/lldb
1010
file_type: file
1111
register: lldb_python_files
1212

1313
- name: Find all lldb Python modules
1414
ansible.builtin.find:
15-
paths: /usr/lib/llvm-14/lib/python3.10/dist-packages/lldb
15+
paths: /usr/lib/llvm-14/lib/python3.12/dist-packages/lldb
1616
file_type: directory
1717
register: lldb_python_directories
1818

@@ -26,5 +26,5 @@
2626
- name: Fix lldb-server-14.0.0
2727
ansible.builtin.file:
2828
src: /usr/lib/llvm-14/bin/lldb-server
29-
dest: /usr/bin/lldb-server-14.0.0
29+
dest: /usr/bin/lldb-server-14.0.6
3030
state: link

0 commit comments

Comments
 (0)