#!/bin/sh
# postinst, runs ldconfig on configure
set -e
 
case "$1" in
  configure)
    ldconfig
    ;;
  *)
  ;;
esac
