if [ "$CLIENT_BASEDIR" = "/usr" ]; then exit 0 fi echo " " echo "You may add the following library[s] to the default library search path" echo "of your system using the crle tool, so that other applications are able" echo "to find the installed libraries automatically:" echo " " LP="" for l in lib; do if [ -n "$l" ]; then if [ -z "$LP" ]; then LP="$CLIENT_BASEDIR/$l" else LP="${LP}:$CLIENT_BASEDIR/$l" fi fi done echo " $LP" echo " " echo "E.g.:" echo " crle -c /var/ld/ld.config -l /usr/lib:$LP" echo " " exit 0