Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-dev] Updates on /jetty-start-enhancement/ branch ..

Joakim Erdfelt wrote:

> Also, the change made to start.config ...
> 
>  # add a property defined library directory
> -${lib}/**                                        exists ${jetty.lib}
> +${lib}/**                                        exists ${lib}
> 
> will break backward compatibility. as the system property ${jetty.lib}
> used in the past now becomes ${lib}.

Well the line should either be


  ${jetty.lib}/**                                  exists ${jetty.lib}
or
  ${lib}/**                                  exists ${lib}


I don't mind which, but the way it was, was broken.

But I guess we should change it back to

  ${jetty.lib}/**                                  exists ${jetty.lib}

for backwards compatibility.


cheers


Back to the top