diff options
author | rillig <rillig@pkgsrc.org> | 2007-10-09 01:10:19 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2007-10-09 01:10:19 +0000 |
commit | fea47a42d5fd8b8a5f65252a68810f5533669e5a (patch) | |
tree | f569ae4296d99f74cfff41bdd161ca40c64d5216 | |
parent | c40af2a0b5261435e79fd68e65db23c1e8ee8662 (diff) | |
download | pkgsrc-fea47a42d5fd8b8a5f65252a68810f5533669e5a.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.
-rwxr-xr-x | bootstrap/bootstrap | 4 |
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 ;; |