Skip to content

Commit

Permalink
openssl.sh: add comment about --libdir=lib [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
vszakats committed Nov 15, 2023
1 parent d2f005c commit 0acf9e6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion openssl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,6 @@ _VER="$1"

# 'no-dso' implies 'no-dynamic-engine' which in turn compiles in these
# engines non-dynamically. To avoid them, also set `no-engine`.

(
mkdir "${_BLDDIR}"; cd "${_BLDDIR}"
# shellcheck disable=SC2086
Expand Down Expand Up @@ -163,6 +162,8 @@ _VER="$1"
mv "${_PKGDIR}/${_my_prefix}"/* "${_PP}"

# Rename 'lib64' to 'lib'. This is what most packages expect.
# Not using '--libdir=lib' because that also changes the paths hardwired
# into the binaries, making them different from default builds at runtime.
if [ -d "${_PP}/lib64" ]; then
mv "${_PP}/lib64" "${_PP}/lib"
fi
Expand Down

0 comments on commit 0acf9e6

Please sign in to comment.