blob: b0f5be39111045b12cb5db387f96b78e2e1cdb9f [file] [log] [blame]
#!/bin/sh
# postinst script for libwave
#
# see: dh_installdeb(1)
set -e
case "$1" in
configure)
ldconfig
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 1
;;
esac
#DEBHELPER#
exit 0