summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavide Guidotti <DGdev91@users.noreply.github.com>2025-01-28 21:16:25 +0100
committerGitHub <noreply@github.com>2025-01-28 15:16:25 -0500
commit159f7b3e0cea0f87235fcbfd6a361123fa449362 (patch)
tree3411c3e6114622f149996f216f1c9406a4658024
parentbb2ce48f82ace6de3915f9f75edeecc63565f708 (diff)
downloadDecky-Framegen-0.4.2.tar.gz
Decky-Framegen-0.4.2.zip
Adding more paths to the OpenSSL checks (#9)v0.4.2
-rwxr-xr-xassets/prepare.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/assets/prepare.sh b/assets/prepare.sh
index 573b1a9..a48ffcb 100755
--- a/assets/prepare.sh
+++ b/assets/prepare.sh
@@ -19,6 +19,18 @@ if test_curl "/usr/lib"; then
elif test_curl "/usr/lib64"; then
echo "Using OpenSSL library path: /usr/lib64"
export LD_LIBRARY_PATH="/usr/lib64:$LD_LIBRARY_PATH"
+elif test_curl "/lib"; then
+ echo "Using OpenSSL library path: /lib"
+ export LD_LIBRARY_PATH="/usr/lib:$LD_LIBRARY_PATH"
+elif test_curl "/lib64"; then
+ echo "Using OpenSSL library path: /lib64"
+ export LD_LIBRARY_PATH="/usr/lib64:$LD_LIBRARY_PATH"
+elif test_curl "/usr/local/lib"; then
+ echo "Using OpenSSL library path: /usr/local/lib"
+ export LD_LIBRARY_PATH="/usr/local/lib:$LD_LIBRARY_PATH"
+elif test_curl "/usr/local/ssl/lib"; then
+ echo "Using OpenSSL library path: /usr/local/ssl/lib"
+ export LD_LIBRARY_PATH="/usr/local/ssl/lib:$LD_LIBRARY_PATH"
else
echo "Failed to configure OpenSSL for curl. Exiting."
exit 1