summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorMark Andrews <marka@isc.org>2009-11-03 13:42:46 +0000
committerMark Andrews <marka@isc.org>2009-11-03 13:42:46 +0000
commita7cfbea4192e0dcea482cde0e7fe6593b49e2913 (patch)
treed5bf1a9a1ebb3e629881218b1f0fb7639999b3c7 /util
parentec15e95ba145132c116108c618eb8c32b67e8096 (diff)
downloadisc-dhcp-a7cfbea4192e0dcea482cde0e7fe6593b49e2913.tar.gz
sensible error message, support 4.2.0
Diffstat (limited to 'util')
-rw-r--r--util/bind.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/util/bind.sh b/util/bind.sh
index 59cfdf09..c40d267b 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.3 2009/10/29 00:46:48 sar Exp $
+# $Id: bind.sh,v 1.4 2009/11/03 13:42:46 marka Exp $
# Get the bind distribution for the libraries
# This script is used to build the DHCP distribution and shouldn't be shipped
@@ -30,9 +30,9 @@ binddir=$topdir/bind
case $# in
1)
case "$1" in
- 4.2.0a1) BINDTAG=v9_7_0b1 ;;
+ 4.2.0a2|4.2.0) BINDTAG=v9_7_0b1 ;;
4.1.2) BINDTAG=v9_7_0b1 ;;
- *) echo "usage: sh bind.sh <version>" >&2
+ *) echo "bind.sh: unsupported version: $1" >&2
exit 1
;;
esac