cmake/debian/cmake-qt-gui.postinst
Modestas Vainius 52c2882e9c Fix upgrades from << 2.8.3-3 (directories to symlinks).
The job of replacing directories with symlinks apparently is a tough one.
Create a symlink manually in the postinst of the affected (!cmake-data)
packages.
2011-01-02 14:24:40 +02:00

17 lines
343 B
Bash

#!/bin/sh
set -e
pkgname=`basename "$0" .postinst`
# Manually create a /usr/share/doc/$pkgname symlink manually 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#