diff options
| author | DGdev91 <iperpido91@gmail.com> | 2025-01-28 13:15:02 +0100 |
|---|---|---|
| committer | DGdev91 <iperpido91@gmail.com> | 2025-01-28 13:15:02 +0100 |
| commit | 747eda1422f2eecc91eff9b8e098414af0a478f8 (patch) | |
| tree | 8b229a1faa45dba04825fa4e3d0f45c50409a7d5 | |
| parent | 09541fca5470d23bd393cfc0b52f254043eea8b1 (diff) | |
| download | Decky-Framegen-747eda1422f2eecc91eff9b8e098414af0a478f8.tar.gz Decky-Framegen-747eda1422f2eecc91eff9b8e098414af0a478f8.zip | |
Adding /usr/lib64 to OpenSSL checks, should help some distros like Fedora
| -rwxr-xr-x | assets/prepare.sh | 6 |
1 files changed, 3 insertions, 3 deletions
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 |
