You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
330 B
16 lines
330 B
#!/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#
|