]> Dogcows Code - chaz/tar/commitdiff
Don't use "for option; do"; Solaris 8 /bin/sh doesn't like that.
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 17 Sep 2003 17:33:32 +0000 (17:33 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 17 Sep 2003 17:33:32 +0000 (17:33 +0000)
bootstrap

index 4fd76d369c80223039c4d058e9585087b3266d14..3245670d8d9a55e0d3f17e1d474b4e4e12ca31c1 100755 (executable)
--- 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]"
This page took 0.018243 seconds and 4 git commands to generate.