From e5298a992b9c43353b1b59fc917ebb9c4a2b3f82 Mon Sep 17 00:00:00 2001 From: Angus Lees Date: Thu, 14 Jul 2022 13:17:39 +0200 Subject: [PATCH] Hardcode LLDB python module directory Forwarded: not-needed Debian package installs python modules into a fixed directory, so just hardcode path in wrapper script. Gbp-Pq: Name d-rust-lldb-paths --- src/etc/rust-lldb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/etc/rust-lldb b/src/etc/rust-lldb index bce72f1bad..a14ce72720 100755 --- a/src/etc/rust-lldb +++ b/src/etc/rust-lldb @@ -7,10 +7,10 @@ set -e host=$(rustc -vV | sed -n -e 's/^host: //p') # Find out where to look for the pretty printer Python module -RUSTC_SYSROOT=$(rustc --print sysroot) +RUSTC_SYSROOT="$(if type "$RUSTC" >/dev/null 2>&1; then "$RUSTC" --print=sysroot; else echo /usr; fi)" RUST_LLDB="$RUSTC_SYSROOT/lib/rustlib/$host/bin/lldb" -lldb=lldb +lldb=lldb-16 if [ -f "$RUST_LLDB" ]; then lldb="$RUST_LLDB" else -- 2.30.2