Fix for a typo in the patch for src/helpers/install.sh:

I forgot the semicolon in the if statement line which oviously breaks
the beast.

Of course this has to be:

> diff -ur apache-1.3/src/helpers/install.sh apache-1.3-cygwin/src/helpers/install.sh
> --- apache-1.3/src/helpers/install.sh   Tue Jun 12 10:24:54 2001
> +++ apache-1.3-cygwin/src/helpers/install.sh    Sat Nov 10 17:07:48 2001
> @@ -88,13 +88,9 @@
>  fi
> 
>  #  Check if we need to add an executable extension (such as ".exe")
> -#  on specific OS to src and dst
> -if [ -f "$src.exe" ]; then
> -  if [ -f "$src" ]; then
> -    : # Cygwin [ test ] is too stupid to do [ -f "$src.exe" ] && [ ! -f "$src" ]
> -  else
> -    ext=".exe"
> -  fi
> +#  on specific OS to src and dst.
> +if [ -f "$src.exe" ] && [ ! -f "$src." ]; then
> +  ext=".exe"
>  fi
>  src="$src$ext"
>  dst="$dst$ext"

Stipe

[EMAIL PROTECTED]
-------------------------------------------------------------------
Wapme Systems AG

Münsterstr. 248
40470 Düsseldorf

Tel: +49-211-74845-0
Fax: +49-211-74845-299

E-Mail: [EMAIL PROTECTED]
Internet: http://www.wapme-systems.de
-------------------------------------------------------------------
wapme.net - wherever you are


Reply via email to