"Sergey Poznyakoff" <[EMAIL PROTECTED]> wrote:
> Jim, Bruno, thank you. Gathering the bits together, I have rewritten the
> thing as follows:
>
> Index: gnulib-tool
...
> -     libname_upper=`echo "$libname" | LC_ALL=C tr 'a-z' 'A-Z'`
> +     libname_upper=`echo "$libname" | LC_ALL=C tr 'a-z-' 'A-Z_'`

Looks good.

I know you didn't change the single quotes (maybe it's Bruno's
stylistic preference to use them?), but they are superfluous.
There's less syntax this way:

    libname_upper=`echo "$libname" | LC_ALL=C tr a-z- A-Z_`


Reply via email to