Skip to content

Commit

Permalink
fixup 2
Browse files Browse the repository at this point in the history
  • Loading branch information
vszakats committed Aug 7, 2024
1 parent b3782db commit 487b7d4
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 @@ -114,9 +114,11 @@ _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.
DYLD_LIBRARY_PATH="$(pwd)/../curl/${_PP}/lib" \
LD_LIBRARY_PATH="$(pwd)/../curl/${_PP}/lib" \
export LD_LIBRARY_PATH="$(pwd)/../curl/${_PP}/lib"
export DYLD_LIBRARY_PATH="${LD_LIBRARY_PATH}"
${_RUN_BIN} "${bin}" --version | tee "trurl-${_CPU}.txt" || true
unset DYLD_LIBRARY_PATH
unset LD_LIBRARY_PATH
unset LD_DEBUG

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

0 comments on commit 487b7d4

Please sign in to comment.