#!/bin/sh

set -e

case "$1" in
    configure*)
        ldconfig
        ;;
    *)
        ;;
esac

# Automatically added by dh_installdocs
if [ "$1" = "configure" ]; then
	if [ -d /usr/doc -a ! -e /usr/doc/libglib1.2 -a -d /usr/share/doc/libglib1.2 ]; then
		ln -sf ../share/doc/libglib1.2 /usr/doc/libglib1.2
	fi
fi
# End automatically added section

