I can confirm report from [email protected] - warning message is present even on fresh installation.
What is more: how was rmdir /etc/xdg/midori/extensions/libadblock.so *ever* supposed to work? libadblock.so is obviously plain file, while rmdir is able to remove only empty directories. Even if libadblock.so was present, rmdir would fail with message like "Not a directory". So, if anything, it should be something similar to: if [ -e /etc/xdg/midori/extensions/libadblock.so ]; then rm /etc/xdg/midori/extensions/libadblock.so fi or rm /etc/xdg/midori/extensions/libadblock.so 2>/dev/null (rm will fail silently, instead of confusing user). -- Best regards Mirosław Zalewski -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

