tags 416735 + patch thanks Hi,
Attached is the diff for my couriergraph 0.25-3.2 NMU.
diff -u couriergraph-0.25/debian/postinst couriergraph-0.25/debian/postinst --- couriergraph-0.25/debian/postinst +++ couriergraph-0.25/debian/postinst @@ -2,7 +2,9 @@ # postinst script for CourierGraph # -. /usr/share/debconf/confmodule +if [ -f /usr/share/debconf/confmodule ]; then + . /usr/share/debconf/confmodule +fi db_version 2.0 set -e diff -u couriergraph-0.25/debian/config couriergraph-0.25/debian/config --- couriergraph-0.25/debian/config +++ couriergraph-0.25/debian/config @@ -3,7 +3,9 @@ # # by Jose Luis Tallon <[EMAIL PROTECTED]> -. /usr/share/debconf/confmodule +if [ -f /usr/share/debconf/confmodule ]; then + . /usr/share/debconf/confmodule +fi db_version 2.0 db_title "CourierGraph" diff -u couriergraph-0.25/debian/postrm couriergraph-0.25/debian/postrm --- couriergraph-0.25/debian/postrm +++ couriergraph-0.25/debian/postrm @@ -3,7 +3,9 @@ # # see: dh_installdeb(1) -. /usr/share/debconf/confmodule +if [ -f /usr/share/debconf/confmodule ]; then + . /usr/share/debconf/confmodule +fi set -e # summary of how this script can be called: diff -u couriergraph-0.25/debian/changelog couriergraph-0.25/debian/changelog --- couriergraph-0.25/debian/changelog +++ couriergraph-0.25/debian/changelog @@ -1,3 +1,10 @@ +couriergraph (0.25-3.2) unstable; urgency=low + + * Non-maintainer upload during BSP. + * conditional include of /usr/share/debconf/confmodule (Closes: #416735) + + -- Martin Zobel-Helas <[EMAIL PROTECTED]> Thu, 17 May 2007 13:51:08 +0200 + couriergraph (0.25-3.1) unstable; urgency=low * Non-maintainer upload to fix pending l10n issues.

