echo " Its is recommended to update your GTK icons caches. E.g.: gtk-update-icon-cache --force $CLIENT_BASEDIR/share/icons/hicolor " if [ "$CLIENT_BASEDIR" != "/usr" ]; then echo " If the appropriate directory does not contain an index.theme file, just add a symbolic link to corresponding file in /usr/share/icons. E.g.: ln -s /usr/share/icons/hicolor/index.theme $CLIENT_BASEDIR/share/icons/hicolor/index.theme " fi 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