From 387c161d8c33157de49e31587a2db3b0dfc5478d Mon Sep 17 00:00:00 2001 From: hamza72x <48919542+hamza72x@users.noreply.github.com> Date: Thu, 29 Feb 2024 05:06:11 +0600 Subject: [PATCH] Add libssl-dev for apt dependencies (#8512) While building on Ubuntu (arm64). I had to manually install `libssl-dev`. Just added that in `script/linux`. --- script/linux | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/linux b/script/linux index b93136e89846a200caac26ae0b9880bc1de133e6..5c557170115abbd88eec84ce6c15c4c87ce087be 100755 --- a/script/linux +++ b/script/linux @@ -12,7 +12,7 @@ if [[ -n $apt ]]; then libfontconfig-dev libwayland-dev libxkbcommon-x11-dev - openssl + libssl-dev ) $maysudo "$apt" install -y "${deps[@]}" exit 0