#!/bin/sh
set -e

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


#DEBHELPER#