Skip to content

Commit

Permalink
Add also lib64 to LD_LIBRARY_PATH on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyLebedev authored and AnarManafov committed Feb 16, 2021
1 parent 1b8e4f6 commit f9382d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions etc/DDS_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ fi
export PATH=$DDS_LOCATION/bin:$PATH

if [ -z "${LD_LIBRARY_PATH}" ]; then
LD_LIBRARY_PATH=$DDS_LOCATION/lib; export LD_LIBRARY_PATH
LD_LIBRARY_PATH=$DDS_LOCATION/lib:$DDS_LOCATION/lib64; export LD_LIBRARY_PATH
else
LD_LIBRARY_PATH=$DDS_LOCATION/lib:$LD_LIBRARY_PATH; export LD_LIBRARY_PATH
LD_LIBRARY_PATH=$DDS_LOCATION/lib:$DDS_LOCATION/lib64:$LD_LIBRARY_PATH; export LD_LIBRARY_PATH
fi

# Mac OS X
Expand Down

0 comments on commit f9382d2

Please sign in to comment.