if [ -d ${PKG_INSTALL_ROOT}/etc/clamav ]; then echo " " echo "The directory /etc/clamav still exists. If you do not need it anymore," echo "you should remove it." echo " " fi if [ "$CLIENT_BASEDIR" = "/usr" -o "$CLIENT_BASEDIR" = "/usr/local" ]; then exit 0 fi LIBS="" for l in lib ; do _TMP=`crle | awk '/Default Library Path/ { print ":" $5 ":" }' \ | egrep ":$CLIENT_BASEDIR/$l"` if [ -n "$_TMP" ]; then LIBS="$LIBS \n$_TMP" fi done if [ -n "$LIBS" ]; then echo " " echo "NOTE: The following library path[s] are still listed in the systems" echo " default library search path (You may remove it using the crle" echo " tool if they are not required anymore):" echo " " echo "$LIBS" echo " " fi exit 0