
| Path : /var/lib/dpkg/info/ |
| Current File : //var/lib/dpkg/info/libopenexr-dev.postinst |
#!/bin/sh
# $Id$
# vim:ts=4:sw=4:expandtab:
set -e
if [ "$1" = "configure" ]
then
# Convert empty directory into a symlink
if [ ! -L /usr/share/doc/libopenexr-dev ]
then
rm -rf /usr/share/doc/libopenexr-dev
ln -s /usr/share/doc/libopenexr6 /usr/share/doc/libopenexr-dev
fi
fi
exit 0