summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorminskim <minskim@pkgsrc.org>2008-04-29 22:03:19 +0000
committerminskim <minskim@pkgsrc.org>2008-04-29 22:03:19 +0000
commita82566f9af10c09960ad67b5eee63bb0370e08d4 (patch)
treecf0e3ecc1848b518612cad16ec5ca265b98c3d3c /bootstrap
parent58abc5a739ebc4c962d96589e22eaa4dcacbb8ae (diff)
downloadpkgsrc-a82566f9af10c09960ad67b5eee63bb0370e08d4.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 ;;