Skip to content

Commit

Permalink
Fix undefined LD_LIBRARY_PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
iakov authored Dec 30, 2024
1 parent 28277e7 commit 3f84b29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildScripts/github/install_installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ dll_search(){
# Find dependencies that have not been packaged, but are still in the system
find . -name '*.dll*' -print0 | xargs -0 -n1 env LD_LIBRARY_PATH="$LIB_DIR" ldd | grep -Ev "not found$" | grep dll | sed -e '/^[^\t]/ d' | sed -e 's/\t//' \
| sed -e 's/.*=..//' | sed -e 's/ (0.*)//' | grep -Ev "lib(System|SYSTEM)32.*dll" \
| grep -Ev "$LD_LIBRARY_PATH"
| grep -Ev "$LIB_DIR"

find . -name '*.dll*' -print0 | xargs -0 -n1 env LD_LIBRARY_PATH="$LIB_DIR" ldd | grep "not found" || exit 0
;;
Expand Down

0 comments on commit 3f84b29

Please sign in to comment.