diff options
Diffstat (limited to 'ubuntu/maverick/applications')
3 files changed, 15 insertions, 0 deletions
diff --git a/ubuntu/maverick/applications/kerry/debian/postinst b/ubuntu/maverick/applications/kerry/debian/postinst index 98c4063a3..d0ff50431 100644 --- a/ubuntu/maverick/applications/kerry/debian/postinst +++ b/ubuntu/maverick/applications/kerry/debian/postinst @@ -4,6 +4,7 @@ set -e if [ "$1" = "configure" ] ; then + # force ldconfig due to tdeinit library ldconfig fi diff --git a/ubuntu/maverick/applications/kpowersave/debian/postinst b/ubuntu/maverick/applications/kpowersave/debian/postinst new file mode 100644 index 000000000..cf7c41189 --- /dev/null +++ b/ubuntu/maverick/applications/kpowersave/debian/postinst @@ -0,0 +1,13 @@ +#!/bin/sh +# postinst script for kpowersave-trinity + +set -e + +if [ "$1" = "configure" ] ; then + # force ldconfig due to tdeinit library + ldconfig +fi + +#DEBHELPER# + +exit 0 diff --git a/ubuntu/maverick/applications/tdepowersave/debian/tdepowersave-trinity.postinst b/ubuntu/maverick/applications/tdepowersave/debian/tdepowersave-trinity.postinst index 6f092476e..a00246bd9 100644 --- a/ubuntu/maverick/applications/tdepowersave/debian/tdepowersave-trinity.postinst +++ b/ubuntu/maverick/applications/tdepowersave/debian/tdepowersave-trinity.postinst @@ -4,6 +4,7 @@ set -e if [ "$1" = "configure" ] ; then + # force ldconfig due to tdeinit library ldconfig fi |