[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: libtool: invalid tag name: CC
From: |
Paul Jarc |
Subject: |
Re: libtool: invalid tag name: CC |
Date: |
Sun, 21 May 2006 15:47:12 -0400 |
User-agent: |
Gnus/5.110003 (No Gnus v0.3) Emacs/21.4 (gnu/linux) |
Ralf Wildenhues <address@hidden> wrote:
> The pattern
> *[!-_A-Za-z0-9,/]*
>
> should match anything containing a character not alphanumeric, nor
> comma, slash, underscore, minus.
!-_ is probably being interpreted as a range. An easy workaround
would be to move "-" to the end of the pattern: *[!_A-Za-z0-9,/-]*
paul