[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: coreutils 6.9.92 fail to configure on *bsd
|
From: |
Ralf Wildenhues |
|
Subject: |
Re: coreutils 6.9.92 fail to configure on *bsd |
|
Date: |
Sun, 13 Jan 2008 11:58:59 +0000 (UTC) |
|
User-agent: |
Loom/3.14 (http://gmane.org/) |
Hi Jim,
Jim Meyering <jim <at> meyering.net> writes:
> +t=`sed -n '/^g''l_INCLUDE_EXCLUDE_PROG(.* [\[\(.*\)\]])/{s//\1/;s/,/ /gp
> +}' $c`
That isn't POSIX compatible yet. You need newlines right after '{'
and you cannot use ';' inside '{...}':
t=`sed -n '/^g''l_INCLUDE_EXCLUDE_PROG(.* [\[\(.*\)\]])/{
s//\1/
s/,/ /gp
}' $c`
Cheers,
Ralf