Re: cvs build prob

2004-07-27 Thread Patrick Welche
I can reproduce the sed: 1: ""s/\*/\\\*/g"": invalid command code " error with the minimum configure.ac which contains LT_LANG(C++) which calls _LT_LANG_CXX_CONFIG, which calls AC_LIBTOOL_PROG_LD_SHLIBS, which calls AC_LIBTOOL_POSTDEP_PREDEP, which has # The `*' in the case matches for archite

Re: cvs build prob

2004-07-27 Thread Patrick Welche
On Tue, Jul 27, 2004 at 04:07:14PM +0100, Patrick Welche wrote: > The great part is this is a ksh quoting problem: > Oh joy... (ksh version @(#)PD KSH v5.2.14 99/07/13.2) .. and it is explained in TFM: The following is a list of things that are affected by the state of the posix opt

Re: cvs build prob

2004-07-27 Thread Bob Friesenhahn
There must be a syntax which works in all cases. We have encountered (and fixed) this backslash problem before. Bob On Tue, 27 Jul 2004, Patrick Welche wrote: On Tue, Jul 27, 2004 at 04:07:14PM +0100, Patrick Welche wrote: The great part is this is a ksh quoting problem: Oh joy... (ksh version @

Re: cvs build prob

2004-07-27 Thread Alexandre Duret-Lutz
On Tue, Jul 27, 2004 at 05:15:17PM +0100, Patrick Welche wrote: > Reminder of the miscreant line: > > output_verbose_link_cmd="`$echo \"X$output_verbose_link_cmd\" | $Xsed -e > \"$no_glob_subst\"`" > Why not replacing it with output_verbose_link_cmd=`$echo "X$output_verbose_link_cmd" | $Xsed

Re: cvs build prob

2004-07-27 Thread Patrick Welche
On Tue, Jul 27, 2004 at 11:23:29AM -0500, Bob Friesenhahn wrote: > There must be a syntax which works in all cases. We have encountered > (and fixed) this backslash problem before. Just removing the extra backslashs in that line "work for me", but I don't know if that will work always.. Cheers,

Re: cvs build prob

2004-07-27 Thread Gary V. Vaughan
Alexandre Duret-Lutz wrote: > On Tue, Jul 27, 2004 at 05:15:17PM +0100, Patrick Welche wrote: > >>Reminder of the miscreant line: >> >> output_verbose_link_cmd="`$echo \"X$output_verbose_link_cmd\" | $Xsed -e >> \"$no_glob_subst\"`" >> > > > Why not replacing it with > > output_verbose_link_c

Re: cvs build prob

2004-07-27 Thread Gary V. Vaughan
Hi Patrick, Good catch! I'm CCing the autoconf list, as this is probably a candidate for AS_SHELL_SANITIZE, and the comparative shellology documentation... Patrick Welche wrote: > On Tue, Jul 27, 2004 at 04:07:14PM +0100, Patrick Welche wrote: > >>The great part is this is a ksh quoting problem

Re: cvs build prob

2004-07-27 Thread Paul Eggert
"Gary V. Vaughan" <[EMAIL PROTECTED]> writes: > Good catch! I'm CCing the autoconf list, as this is probably a candidate for > AS_SHELL_SANITIZE, and the comparative shellology documentation... Thanks. I installed the patch enclosed below. >> Reminder of the miscreant line: >> >> output_ver