Skip to content

Commit

Permalink
fix packaging static build openssl 32bit (netdata#15855)
Browse files Browse the repository at this point in the history
(cherry picked from commit 28d9cda)
  • Loading branch information
ilyam8 authored and stelfrag committed Aug 23, 2023
1 parent 53ba1e0 commit 4157669
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packaging/makeself/jobs/20-openssl.install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,12 @@ fi

run make -j "$(nproc)" install_sw

if [ -d "/openssl-static/lib" ]; then
cd "/openssl-static" || exit 1
ln -s "lib" "lib64" || true
cd - || exit 1
fi

store_cache openssl "${NETDATA_MAKESELF_PATH}/tmp/openssl"

# shellcheck disable=SC2015
Expand Down

0 comments on commit 4157669

Please sign in to comment.