summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Hankins <dhankins@isc.org>2010-06-02 22:18:41 +0000
committerDavid Hankins <dhankins@isc.org>2010-06-02 22:18:41 +0000
commit3be9631ca4934ca777feb28c29c22a7dbb8e6b46 (patch)
tree04743fa6901444fdcc39fcd7689f1eaed9bf0791
parenta5c7bf7779e06442fe71edc0ded61970be16396d (diff)
downloadisc-dhcp-3be9631ca4934ca777feb28c29c22a7dbb8e6b46.tar.gz
Update bind.sh for auto robie builds.
-rw-r--r--util/bind.sh17
1 files changed, 14 insertions, 3 deletions
diff --git a/util/bind.sh b/util/bind.sh
index 5f8fe117..ffc023c6 100644
--- a/util/bind.sh
+++ b/util/bind.sh
@@ -14,7 +14,7 @@
# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
# PERFORMANCE OF THIS SOFTWARE.
-# $Id: bind.sh,v 1.10 2010/06/01 17:29:36 dhankins Exp $
+# $Id: bind.sh,v 1.11 2010/06/02 22:18:41 dhankins Exp $
# Get the bind distribution for the libraries
# This script is used to build the DHCP distribution and shouldn't be shipped
@@ -29,6 +29,17 @@ binddir=$topdir/bind
case $# in
1)
case "$1" in
+ ###
+ ### Robie calls this script with the building branch name so we can
+ ### build with BIND9 HEAD for the relevant branch we would release
+ ### with.
+ ###
+ v4_2) SNAP=snapshot BINDTAG=v9_7 ;;
+ HEAD|v[0-9]_[0-9].*) SNAP=snapshot BINDTAG=HEAD ;;
+ ###
+ ### For ease of use, this records the sticky tag of versions
+ ### released with each point release.
+ ###
4.2.0b2|4.2.0) BINDTAG=v9_7_1rc1 ;;
4.2.0b1) BINDTAG=v9_7_0_P1 ;;
4.2.0a2|4.2.0a1) BINDTAG=v9_7_0b3 ;;
@@ -37,7 +48,7 @@ case $# in
;;
esac
;;
- *) echo "usage: sh bind.sh <version>" >&2
+ *) echo "usage: sh bind.sh [<branch>|<version>]" >&2
exit 1
;;
esac
@@ -56,7 +67,7 @@ cvs checkout -p -r $BINDTAG bind9/util/kit.sh > kit.sh
# Create the bind tarball, which has the side effect of
# setting up the bind directory we will use for building
# the export libraries
-sh kit.sh $BINDTAG $binddir
+sh kit.sh $SNAP $BINDTAG $binddir
. ./version.tmp