Files
desktop-base/debian/postinst
2004-06-24 23:03:58 +00:00

12 lines
312 B
Bash

#!/bin/bash -e
#DEBHELPER#
if [ "${1}" = "configure" ] && [ "$2" != "" ] ; then
if dpkg --compare-versions ${2} lt 0.3.11 && dpkg --compare-versions ${2} gt 0.3.5; then
if test -x /var/lib/dpkg/info/libgnome2-common.postinst; then
/var/lib/dpkg/info/libgnome2-common.postinst configure
fi
fi
fi