From: Wouter Wijngaards Date: Thu, 5 Apr 2012 09:10:56 +0000 (+0000) Subject: - fix bug #443: --with-chroot-dir not honoured by configure. X-Git-Tag: release-1.4.17rc1~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a0db316445d3512fbeedcbe2557ff73f4b36834f;p=thirdparty%2Funbound.git - fix bug #443: --with-chroot-dir not honoured by configure. git-svn-id: file:///svn/unbound/trunk@2656 be551aaa-1e26-0410-a405-d3ace91eadb9 --- diff --git a/configure b/configure index 885d0e88d..d15dfe158 100755 --- a/configure +++ b/configure @@ -4007,7 +4007,7 @@ fi fi -hdr_chroot="`echo $UNBOUND_CHOOT_DIR | sed -e 's/\\\\/\\\\\\\\/g'`" +hdr_chroot="`echo $UNBOUND_CHROOT_DIR | sed -e 's/\\\\/\\\\\\\\/g'`" cat >>confdefs.h <<_ACEOF diff --git a/configure.ac b/configure.ac index e15274d8e..ab13a0a3e 100644 --- a/configure.ac +++ b/configure.ac @@ -140,7 +140,7 @@ else fi ) AC_SUBST(UNBOUND_CHROOT_DIR) -ACX_ESCAPE_BACKSLASH($UNBOUND_CHOOT_DIR, hdr_chroot) +ACX_ESCAPE_BACKSLASH($UNBOUND_CHROOT_DIR, hdr_chroot) AC_DEFINE_UNQUOTED(CHROOT_DIR, ["$hdr_chroot"], [Directory to chroot to]) AC_ARG_WITH(share-dir, diff --git a/doc/Changelog b/doc/Changelog index 5e4b42f5f..6ef467f45 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,3 +1,6 @@ +5 April 2012: Wouter + - fix bug #443: --with-chroot-dir not honoured by configure. + 27 March 2012: Wouter - fix bug #442: Fix that Makefile depends on pythonmod headers even using --without-pythonmodule.