From: Wouter Wijngaards Date: Thu, 18 Aug 2011 16:01:42 +0000 (+0000) Subject: Fix autoconf for makedist crosscompile RC or snapshot. X-Git-Tag: release-1.4.13rc1~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5ab9b9c8f904d5fe76fca9a1edafba87fdffa1ac;p=thirdparty%2Funbound.git Fix autoconf for makedist crosscompile RC or snapshot. git-svn-id: file:///svn/unbound/trunk@2476 be551aaa-1e26-0410-a405-d3ace91eadb9 --- diff --git a/doc/Changelog b/doc/Changelog index 0a61362fa..2cfd137fb 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,3 +1,6 @@ +18 August 2011: Wouter + - fix autoconf call in makedist crosscompile to RC or snapshot. + 17 August 2011: Wouter - Fix validation of . DS query. - new xml format at IANA, new awk for iana_update. diff --git a/makedist.sh b/makedist.sh index b5e6abd88..c2e2f82ca 100755 --- a/makedist.sh +++ b/makedist.sh @@ -280,7 +280,8 @@ if [ "$DOWIN" = "yes" ]; then replace_text "configure.ac" "AC_INIT(unbound, $version" "AC_INIT(unbound, $version2" version="$version2" info "Rebuilding configure script (autoconf) snapshot." - autoconf || autoheader || error_cleanup "Autoconf failed." + autoconf || error_cleanup "Autoconf failed." + autoheader || error_cleanup "Autoheader failed." rm -r autom4te* || echo "ignored" fi