Package: inn2 Version: 2.4.5-5 The patch debian/patches/configure-hostname edits configure, which is the output of autoconf, and does not change the source file configure.in. This is wrong because the change will be undone if autoconf is rerun for any reason.
Any changes should be made to configure.in. Replacement patch attached. It would be OK to patch configure too, by hand, rather than rerunning autoconf and thus ending up with a huge diff to configure. Ian. diff --git a/configure.in b/configure.in index 05dee65..9d3746d 100644 --- a/configure.in +++ b/configure.in @@ -385,7 +385,7 @@ AC_ARG_WITH(python, DO_PYTHON=DONT) dnl Set some configuration file defaults from the machine hostname. -HOSTNAME=`hostname 2> /dev/null || uname -n` +HOSTNAME=server.example.net AC_SUBST(HOSTNAME) dnl Checks for programs. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org