summaryrefslogtreecommitdiffstats
path: root/packaging/default_files/postinst
blob: daa527707cd180ef51aa8db83e24ae3c420f5f77 (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/sh
set -e
#
if [ "$1" = "configure" ]; then
  if [ -d /usr/doc -a ! -e /usr/doc/dxs -a -d /usr/share/doc/dxs ]; then
    ln -sf ../share/doc/dxs /usr/doc/dxs
  fi
fi
#