Rev 63 | Blame | Compare with Previous | Last modification | View Log | RSS feed
#!/bin/sh
set -e
# Replace documentation directory with symlink
docdir="/usr/share/doc/libspf2-2-dbg"
if [ -d $docdir ] && [ ! -L $docdir ]; then
if rmdir $docdir 2>/dev/null; then
ln -sf libspf2-2 $docdir
fi
fi
#DEBHELPER#
exit 0