#!/bin/sh

set -e

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

