Skip to content

Commit 69642b3

Browse files
committed
Makefile: bump to libssl3 for Ubuntu 24.04 compat
libssl1.1 is not available in Ubuntu 24.04, so we switch to libssl3. We could stay on libssl1.1 for Ubuntu 24.04, but this would: 1) require fetching the package from elsewhere; 2) mean that we are using a ancient version of libssl, which is not recommended for security reasons.
1 parent 41e012a commit 69642b3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,10 +191,10 @@ install-java8-if-missing:
191191
}
192192

193193
install-build-dependencies: update-apt-cache-if-needed
194-
@sudo apt-get install -y libssl1.1 libuv1-dev libkrb5-dev libc6-dbg
194+
@sudo apt-get install -y libssl3 libuv1-dev libkrb5-dev libc6-dbg
195195

196196
install-bin-dependencies: update-apt-cache-if-needed
197-
@sudo apt-get install -y libssl1.1 libuv1-dev libkrb5-dev libc6-dbg
197+
@sudo apt-get install -y libssl3 libuv1-dev libkrb5-dev libc6-dbg
198198

199199
build-integration-test-bin:
200200
@{\

0 commit comments

Comments
 (0)