diff options
| author | Theofilos Augoustis <theofilos.augoustis@tum.de> | 2025-08-28 09:16:17 +0000 |
|---|---|---|
| committer | Theofilos Augoustis <theofilos.augoustis@tum.de> | 2025-08-28 09:16:17 +0000 |
| commit | e2c8d31e8040a4d35766aebb145d93cfe4a556ad (patch) | |
| tree | e2f7132427cb68ceb941cb4620ff32661625db8a | |
| parent | 25114dc4ad9c76dde8cf58f9238d851e4a6a4fc0 (diff) | |
| download | focaccia-ta/pylldb.tar.gz focaccia-ta/pylldb.zip | |
Fix incorrect handling of LLDB symlink ta/pylldb
| -rw-r--r-- | flake.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix index 5d36f84..63a1d90 100644 --- a/flake.nix +++ b/flake.nix @@ -97,8 +97,8 @@ mkdir -p "$target" # Copy the lldb Python package (and the native extension) - if [ -h "$src/lldb" ]; then - ln -sT "$src/lldb" "$target/lldb" + if [ -d "$src/lldb" ]; then + ln -sTf "$src/lldb" "$target/lldb" fi # Optional: some builds ship a top-level helper |