From 54e322110cb35109002f488c6fa4b0807ab799cb Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Wed, 17 Sep 2003 17:33:32 +0000 Subject: [PATCH] Don't use "for option; do"; Solaris 8 /bin/sh doesn't like that. --- bootstrap | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bootstrap b/bootstrap index 4fd76d3..3245670 100755 --- a/bootstrap +++ b/bootstrap @@ -24,7 +24,8 @@ # Parse options. -for option; do +for option +do case $option in --help) echo "$0: usage: $0 [--gnulib-srcdir=DIR][--cvs-auth=AUTH-METHOD][--cvs-user=USERNAME]" -- 2.44.0