From e7eee05c4cfac8ebeb1f524ffaf8fb7abcb9b376 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gonzalo=20Garramu=C3=B1o?= Date: Mon, 3 Jun 2024 21:46:45 -0300 Subject: [PATCH] Added /usr/local/lib to DYLD_LIBRARY_PATH. --- etc/build_dir.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/build_dir.sh b/etc/build_dir.sh index bfc5cf29b..3f2ddefa0 100755 --- a/etc/build_dir.sh +++ b/etc/build_dir.sh @@ -121,7 +121,7 @@ echo "CMake at: ${CMAKE_LOCATION} ${CMAKE_VERSION}" # We set both lib64 and lib to handle differences in Linux RH and Ubuntu # export LD_LIBRARY_PATH="$PWD/${BUILD_DIR}/install/lib64:$PWD/${BUILD_DIR}/install/lib:${LD_LIBRARY_PATH}" -export DYLD_LIBRARY_PATH="$PWD/${BUILD_DIR}/install/lib:${DYLD_LIBRARY_PATH}" +export DYLD_LIBRARY_PATH="$PWD/${BUILD_DIR}/install/lib:${DYLD_LIBRARY_PATH}:/usr/local/lib" # # We set both lib64 and lib to handle differences in Linux RH and Ubuntu