cmake/debian/cmake-dbg.postinst
2011-01-02 14:38:40 +02:00

16 lines
330 B
Bash

#!/bin/sh
set -e
pkgname=`basename "$0" .postinst`
# Manually create /usr/share/doc/$pkgname symlink on upgrades (see #404850)
if [ "$1" = "configure" ] && [ -n "$2" ] && \
dpkg --compare-versions "$2" lt "2.8.3-3";
then
rmdir "/usr/share/doc/$pkgname"
ln -s "cmake-data" "/usr/share/doc/$pkgname"
fi
#DEBHELPER#