Skip to content

Commit c24bafa

Browse files
committed
Remove unneeded default value
1 parent 800380e commit c24bafa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dev/release/verify-release-candidate.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,7 @@ test_and_install_cpp() {
524524
# path (searched last, to not override system libs) so they resolve.
525525
# See https://github.com/conda-forge/cmake-feedstock/issues/230
526526
if [ "$(uname)" = "Darwin" ] && [ "${USE_CONDA}" -gt 0 ] && [ -n "${CONDA_PREFIX:-}" ]; then
527-
DYLD_FALLBACK_LIBRARY_PATH="${CONDA_PREFIX}/lib:${DYLD_FALLBACK_LIBRARY_PATH:-/usr/local/lib:/usr/lib}" cmake --build . --target install
527+
DYLD_FALLBACK_LIBRARY_PATH="${CONDA_PREFIX}/lib" cmake --build . --target install
528528
else
529529
cmake --build . --target install
530530
fi

0 commit comments

Comments
 (0)