Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
vszakats committed Aug 7, 2024
1 parent bf07062 commit b3782db
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions trurl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,11 @@ _VER="$1"
# https://www.man7.org/training/download/shlib_dynlinker_slides.pdf
export LD_DEBUG='libs,versions,statistics'
fi
# On macOS this picks up a system libcurl. Ours is picked up
# On macOS this picks up a system libcurl by default. Ours is picked up
# when running it from the unpacked release tarball.
DYLD_LIBRARY_PATH="$(pwd)/../curl/${_PP}/lib" ${_RUN_BIN} "${bin}" --version | tee "trurl-${_CPU}.txt" || true
DYLD_LIBRARY_PATH="$(pwd)/../curl/${_PP}/lib" \
LD_LIBRARY_PATH="$(pwd)/../curl/${_PP}/lib" \
${_RUN_BIN} "${bin}" --version | tee "trurl-${_CPU}.txt" || true
unset LD_DEBUG

if [ "${CW_TURL_TEST:-}" = '1' ] && \
Expand Down

0 comments on commit b3782db

Please sign in to comment.