mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
makedist prerelease feature.
git-svn-id: file:///svn/unbound/trunk@1389 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
3d42b1fffa
commit
3d3b875a70
3 changed files with 13 additions and 4 deletions
|
|
@ -2,7 +2,7 @@
|
|||
# Process this file with autoconf to produce a configure script.
|
||||
AC_PREREQ(2.56)
|
||||
|
||||
AC_INIT(unbound,1.1.2, unbound-bugs@nlnetlabs.nl, unbound)
|
||||
AC_INIT(unbound, 1.1.2, unbound-bugs@nlnetlabs.nl, unbound)
|
||||
|
||||
LIBUNBOUND_CURRENT=0
|
||||
LIBUNBOUND_REVISION=17
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
16 December 2008: Wouter
|
||||
- follow makedist improvements from ldns, for maintainers prereleases.
|
||||
|
||||
11 December 2008: Wouter
|
||||
- better fix for bug #219: use LOG_NDELAY with openlog() call.
|
||||
Thanks to Tamas Tevesz.
|
||||
|
|
|
|||
12
makedist.sh
12
makedist.sh
|
|
@ -171,7 +171,7 @@ svn export "$SVNROOT" unbound || error_cleanup "SVN command failed"
|
|||
cd unbound || error_cleanup "Unbound not exported correctly from SVN"
|
||||
|
||||
info "Adding libtool utils (libtoolize)."
|
||||
libtoolize -c || error_cleanup "libtoolize failed"
|
||||
libtoolize -c --install || libtoolize -c || error_cleanup "Libtoolize failed."
|
||||
|
||||
info "Building configure script (autoreconf)."
|
||||
autoreconf || error_cleanup "Autoconf failed."
|
||||
|
|
@ -207,8 +207,14 @@ info "Unbound version: $version"
|
|||
|
||||
if [ "$SNAPSHOT" = "yes" ]; then
|
||||
info "Building Unbound snapshot."
|
||||
version="$version-`date +%Y%m%d`"
|
||||
info "Snapshot version number: $version"
|
||||
version2="$version-`date +%Y%m%d`"
|
||||
info "Snapshot version number: $version2"
|
||||
|
||||
replace_text "configure.ac" "AC_INIT(unbound, $version" "AC_INIT(unbound, $version2"
|
||||
version="$version2"
|
||||
|
||||
info "Rebuilding configure script (autoconf) snapshot."
|
||||
autoreconf || error_cleanup "Autoconf failed."
|
||||
fi
|
||||
|
||||
replace_all doc/README
|
||||
|
|
|
|||
Loading…
Reference in a new issue