#!/bin/sh
set -e

if [ "$1" = "configure" ]; then
  if [ -d /usr/doc -a ! -e /usr/doc/xconvers -a -d /usr/share/doc/xconvers ]; then
    ln -sf ../share/doc/xconvers /usr/doc/xconvers
  fi
fi
