diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2015-03-27 02:26:44 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2015-03-27 02:26:44 +0100 |
commit | ae112f4eb26973595ecc8e017b9470d24c2c5476 (patch) | |
tree | 7e9dc00a4fc93bdbf8a63690f9bd6e6f76bfe9a6 /ubuntu/maverick/tdetoys/debian | |
parent | 7b7a5049a9808f028273a876d8d2f6f11d4ada9c (diff) | |
download | tde-packaging-ae112f4eb26973595ecc8e017b9470d24c2c5476.tar.gz tde-packaging-ae112f4eb26973595ecc8e017b9470d24c2c5476.zip |
Force ldconfig due to tdeinit library on Debian and Ubuntu
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'ubuntu/maverick/tdetoys/debian')
-rw-r--r-- | ubuntu/maverick/tdetoys/debian/kweather-trinity.postinst | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ubuntu/maverick/tdetoys/debian/kweather-trinity.postinst b/ubuntu/maverick/tdetoys/debian/kweather-trinity.postinst new file mode 100644 index 000000000..99a084399 --- /dev/null +++ b/ubuntu/maverick/tdetoys/debian/kweather-trinity.postinst @@ -0,0 +1,13 @@ +#!/bin/sh +# postinst script for kweather-trinity + +set -e + +if [ "$1" = "configure" ] ; then + # force ldconfig due to tdeinit library + ldconfig +fi + +#DEBHELPER# + +exit 0 |