Skip to content

Commit

Permalink
fixup 4
Browse files Browse the repository at this point in the history
  • Loading branch information
vszakats committed Aug 7, 2024
1 parent b4456c5 commit 2e6316c
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions trurl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,9 @@ _VER="$1"
fi
# On macOS this picks up a system libcurl by default. Ours is picked up
# when running it from the unpacked release tarball.
LD_LIBRARY_PATH="$(pwd)/../curl/${_PP}/lib"; export LD_LIBRARY_PATH
export DYLD_LIBRARY_PATH="${LD_LIBRARY_PATH}"
${_RUN_BIN} "${bin}" --version | tee "trurl-${_CPU}.txt" || true
unset DYLD_LIBRARY_PATH
unset LD_LIBRARY_PATH
LD_LIBRARY_PATH="$(pwd)/../curl/${_PP}/lib" \
DYLD_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 2e6316c

Please sign in to comment.