Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/start/envlinux.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ The `installdependencies.sh` script should install all required dependencies on

Debian based OS (Debian, Ubuntu, Linux Mint)

- liblttng-ust1 or liblttng-ust0
- liblttng-ust1t64, liblttng-ust1 or liblttng-ust0
Copy link

Copilot AI Apr 29, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The punctuation here is a bit ambiguous: using a comma before “liblttng-ust1” can read like multiple packages are required. Consider rephrasing to make the alternation explicit (e.g., “liblttng-ust1t64, liblttng-ust1, or liblttng-ust0” or “liblttng-ust1t64 or liblttng-ust1 or liblttng-ust0”).

Suggested change
- liblttng-ust1t64, liblttng-ust1 or liblttng-ust0
- liblttng-ust1t64 or liblttng-ust1 or liblttng-ust0

Copilot uses AI. Check for mistakes.
- libkrb5-3
- zlib1g
- libssl3t64, libssl3, libssl1.1, libssl1.0.2 or libssl1.0.0
- libicu76, libicu75, ..., libicu66, libicu65, libicu63, libicu60, libicu57, libicu55, or libicu52
- libicu80, libicu79, ..., libicu66, libicu65, libicu63, libicu60, libicu57, libicu55, or libicu52

Fedora based OS (Fedora, Red Hat Enterprise Linux, CentOS, Oracle Linux 7)

Expand Down
4 changes: 2 additions & 2 deletions src/Misc/layoutbin/installdependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ then
fi
}

apt_get_with_fallbacks liblttng-ust1 liblttng-ust0
apt_get_with_fallbacks liblttng-ust1t64 liblttng-ust1 liblttng-ust0
if [ $? -ne 0 ]
then
echo "'$apt_get' failed with exit code '$?'"
Expand All @@ -110,7 +110,7 @@ then
exit 1
fi

apt_get_with_fallbacks libicu76 libicu75 libicu74 libicu73 libicu72 libicu71 libicu70 libicu69 libicu68 libicu67 libicu66 libicu65 libicu63 libicu60 libicu57 libicu55 libicu52
apt_get_with_fallbacks libicu80 libicu79 libicu78 libicu77 libicu76 libicu75 libicu74 libicu73 libicu72 libicu71 libicu70 libicu69 libicu68 libicu67 libicu66 libicu65 libicu63 libicu60 libicu57 libicu55 libicu52
if [ $? -ne 0 ]
then
echo "'$apt_get' failed with exit code '$?'"
Expand Down
Loading