summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorminskim <minskim>2008-04-29 22:03:19 +0000
committerminskim <minskim>2008-04-29 22:03:19 +0000
commit825ac775710064bc4510b6cf339a011062ace38b (patch)
treecf0e3ecc1848b518612cad16ec5ca265b98c3d3c /bootstrap
parentac138e3800869c4a406b0ac136503a68d4626399 (diff)
downloadpkgsrc-825ac775710064bc4510b6cf339a011062ace38b.tar.gz
Make the --binary-macpkg option compatible with the other binary-kit options.
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap/bootstrap6
1 files changed, 4 insertions, 2 deletions
diff --git a/bootstrap/bootstrap b/bootstrap/bootstrap
index a9dd4ffc448..276c952e1f3 100755
--- a/bootstrap/bootstrap
+++ b/bootstrap/bootstrap
@@ -1,6 +1,6 @@
#! /bin/sh
-# $NetBSD: bootstrap,v 1.121 2008/03/06 04:45:58 jlam Exp $
+# $NetBSD: bootstrap,v 1.122 2008/04/29 22:03:19 minskim Exp $
#
#
# Copyright (c) 2001-2002 Alistair G. Crooks. All rights reserved.
@@ -385,8 +385,10 @@ while [ $# -gt 0 ]; do
binary_gzip_kit=`get_optarg "$1"` ;;
--gzip-binary-kit)
binary_gzip_kit="$2"; shift ;;
- --binary-macpkg)
+ --binary-macpkg=*)
binary_macpkg=`get_optarg "$1"` ;;
+ --binary-macpkg)
+ binary_macpkg="$2"; shift ;;
--full) full=yes ;;
--quiet) quiet=yes ;;
--help) echo "$usage"; exit ;;