From 62f2ed987a4aaf274f7d54fb5bb797e23cc97015 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gonzalo=20Garramu=C3=B1o?= Date: Tue, 4 Jun 2024 04:26:20 -0300 Subject: [PATCH] Removed /usr/local/lib from 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 92e392577..d066bf308 100755 --- a/etc/build_dir.sh +++ b/etc/build_dir.sh @@ -118,7 +118,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}:/usr/local/lib" +export DYLD_LIBRARY_PATH="$PWD/${BUILD_DIR}/install/lib:${DYLD_LIBRARY_PATH}" # # We set both lib64 and lib to handle differences in Linux RH and Ubuntu