From 747eda1422f2eecc91eff9b8e098414af0a478f8 Mon Sep 17 00:00:00 2001 From: DGdev91 Date: Tue, 28 Jan 2025 13:15:02 +0100 Subject: Adding /usr/lib64 to OpenSSL checks, should help some distros like Fedora --- assets/prepare.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'assets') diff --git a/assets/prepare.sh b/assets/prepare.sh index 13f6ff0..457aac2 100755 --- a/assets/prepare.sh +++ b/assets/prepare.sh @@ -16,9 +16,9 @@ test_curl() { if test_curl "/usr/lib"; then echo "Using OpenSSL library path: /usr/lib" export LD_LIBRARY_PATH="/usr/lib:$LD_LIBRARY_PATH" -elif test_curl "/home/linuxbrew/.linuxbrew/lib"; then - echo "Using OpenSSL library path: /home/linuxbrew/.linuxbrew/lib" - export LD_LIBRARY_PATH="/home/linuxbrew/.linuxbrew/lib:$LD_LIBRARY_PATH" +elif test_curl "/usr/lib64"; then + echo "Using OpenSSL library path: /usr/lib64" + export LD_LIBRARY_PATH="/usr/lib:$LD_LIBRARY_PATH" else echo "Failed to configure OpenSSL for curl. Exiting." exit 1 -- cgit v1.2.3