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.
17 lines
343 B
17 lines
343 B
14 years ago
|
#!/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#
|