summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2007-10-09 01:10:19 +0000
committerrillig <rillig@pkgsrc.org>2007-10-09 01:10:19 +0000
commitb1ef808a1ad94d09592ddbdb0a522883e9c4fe36 (patch)
treef569ae4296d99f74cfff41bdd161ca40c64d5216 /bootstrap
parent1f61b85130972238a8479721bdf868fcd62974a0 (diff)
downloadpkgsrc-b1ef808a1ad94d09592ddbdb0a522883e9c4fe36.tar.gz
Fixed a typo in the bootstrap program. Now it is possible to specify an
alternative fetch_cmd. Patch provided by Pierre Bourgin in PR 37081.
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap/bootstrap4
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap/bootstrap b/bootstrap/bootstrap
index 3dfeb7b02be..c6cec700aa8 100755
--- a/bootstrap/bootstrap
+++ b/bootstrap/bootstrap
@@ -1,6 +1,6 @@
#! /bin/sh
-# $NetBSD: bootstrap,v 1.113 2007/09/29 15:50:16 rillig Exp $
+# $NetBSD: bootstrap,v 1.114 2007/10/09 01:10:19 rillig Exp $
#
#
# Copyright (c) 2001-2002 Alistair G. Crooks. All rights reserved.
@@ -307,7 +307,7 @@ while [ $# -gt 0 ]; do
--varbase=*) varbase=`get_optarg "$1"` ;;
--varbase) varbase="$2"; shift ;;
--fetch-cmd=*) fetch_cmd=`get_optarg "$1"` ;;
- --fetch-cmd) fetch_cmd="$a"; shift ;;
+ --fetch-cmd) fetch_cmd="$2"; shift ;;
--compiler=*) compiler=`get_optarg "$1"` ;;
--compiler) compiler="$2"; shift ;;
--ignore-case-check) ignorecasecheck=yes ;;