diff options
author | grant <grant@pkgsrc.org> | 2004-06-06 01:30:31 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-06-06 01:30:31 +0000 |
commit | 455f44b8532b5307bb25b26d7f65730525efd423 (patch) | |
tree | 0822a4fff4e956913144af0f33c24278da12c9d1 /mk/bulk/mksandbox | |
parent | 70f0a8dfb5308f97e0348ea10bda395165712f14 (diff) | |
download | pkgsrc-455f44b8532b5307bb25b26d7f65730525efd423.tar.gz |
remove "local" variable scope, it is not required and is NetBSD sh(1)
specific.
Diffstat (limited to 'mk/bulk/mksandbox')
-rwxr-xr-x | mk/bulk/mksandbox | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/bulk/mksandbox b/mk/bulk/mksandbox index c6fc88e6d44..7502dbbcfe2 100755 --- a/mk/bulk/mksandbox +++ b/mk/bulk/mksandbox @@ -1,6 +1,6 @@ #! /bin/sh -# $NetBSD: mksandbox,v 1.31 2004/02/13 23:53:13 grant Exp $ +# $NetBSD: mksandbox,v 1.32 2004/06/06 01:30:31 grant Exp $ # # # Copyright (c) 2002 Alistair G. Crooks. All rights reserved. @@ -173,7 +173,7 @@ cat > $sandbox_script <<EOS sandbox=$sandbox r3() { - local _R= + _R= while [ \$# -ge 3 ] do _R="\$1 \$2 \$3 \$_R" |