new gnupg-1.4.4 autogen error

Joe Vender jvender at owensboro.net
Wed Apr 12 22:11:54 CEST 2006


Thanks Werner. That fixed it for me.

Joe Vender


*********** REPLY SEPARATOR  ***********

On 4/12/06 at 12:06 PM Werner Koch wrote:

>On Tue, 11 Apr 2006 14:16:20 -0500, Joe Vender said:
>
>
>> Running aclocal -I m4 ...
>> sed: -e expression #2, char 29: Extra characters after command
>
>The culprit is this sed invocation:
>
>  sed -n '/^Revision:/ {s/[^0-9]//gp;q}'
>                                    
>It extracts the Revision line (of svn info), deletes all but the
>digits and quits so that only the first line is considered.  Usin the
>semicolon is permitted by POSIX but implementations are not required
>to.  I guess I need to call head instead.  Please change the lines in
>
>m4_define([svn_revision], m4_esyscmd([echo -n $((svn info 2>/dev/null \
>            || echo 'Revision: 0')|sed -n '/^Revision:/
>{s/[^0-9]//gp;q}')]))
>
>to 
>
>m4_define([svn_revision], m4_esyscmd([echo -n $((svn info 2>/dev/null \
>          || echo 'Revision: 0')|sed -n '/^Revision:/ s/[^0-9]//gp'|head
>-1)]))
>
>or svn up





More information about the Gnupg-devel mailing list