Re: sed not working

2005-09-03 Thread Rein Kadastik
What about csh/tcsh and gdb? Particularly tc.const.h generation and init.c generation? Also if I cvsup'ed the sources for 4.11-RELEASE-p11, the make buildworld still failed, so no sign of the bugfix there. Rein Thomas Dickey wrote: In article <[EMAIL PROTECTED]> you wrote: Hi,

Re: sed not working

2005-09-03 Thread Rein Kadastik
Rein Kadastik wrote: Rein Kadastik wrote: OK got again some extremely strange testing results. If there is anywhere in the first token (the length does not matter) one of the following charakters: t, u, v, w, x, y, the transformation fails. Note that with z it works and with a-s it works al

Re: sed not working

2005-09-03 Thread Rein Kadastik
Rein Kadastik wrote: OK got again some extremely strange testing results. If there is anywhere in the first token (the length does not matter) one of the following charakters: t, u, v, w, x, y, the transformation fails. Note that with z it works and with a-s it works also. -- Rein _

Re: sed not working

2005-09-03 Thread Rein Kadastik
OK got again some extremely strange testing results. If there is anywhere in the first token (the length does not matter) one of the following charakters: t, u, v, w, x, y, the transformation fails. Note that with z it works and with a-s it works also. -- Rein

Re: sed not working

2005-09-03 Thread Rein Kadastik
Alex Zbyslaw wrote: Rein Kadastik wrote: Alex Zbyslaw wrote: Rein Kadastik wrote: Rein Kadastik wrote: Hi I have a problem with sed on one of my systems. Does anybody have some ideas, what would be the reason? I tested the sed command also on 4.8-RELEASE and 4.10-STABLE where it work

Re: sed not working

2005-09-03 Thread Alex Zbyslaw
Rein Kadastik wrote: Alex Zbyslaw wrote: Rein Kadastik wrote: Rein Kadastik wrote: Hi I have a problem with sed on one of my systems. Does anybody have some ideas, what would be the reason? I tested the sed command also on 4.8-RELEASE and 4.10-STABLE where it works nicely. Even copied

Re: sed not working

2005-09-03 Thread Alex Zbyslaw
Rein Kadastik wrote: Alex Zbyslaw wrote: Rein Kadastik wrote: Rein Kadastik wrote: Hi I have a problem with sed on one of my systems. You've probably tried this, but what does "which sed" show on the broken system? It should show /usr/bin/sed and if it doesn't, there's your problem

Re: sed not working

2005-09-03 Thread Rein Kadastik
Alex Zbyslaw wrote: Rein Kadastik wrote: Rein Kadastik wrote: Hi I have a problem with sed on one of my systems. Lets take the following command: sed -e '/^\([a-z_][a-z_]*\) /s//\1 gen_/' On all other systems the input would be transformed: int something() -> int gen_something() On the

Re: sed not working

2005-09-02 Thread Alex Zbyslaw
Rein Kadastik wrote: Rein Kadastik wrote: Hi I have a problem with sed on one of my systems. Lets take the following command: sed -e '/^\([a-z_][a-z_]*\) /s//\1 gen_/' On all other systems the input would be transformed: int something() -> int gen_something() On the broken system, the tr

Re: sed not working

2005-09-02 Thread Rein Kadastik
Rein Kadastik wrote: Hi I have a problem with sed on one of my systems. Lets take the following command: sed -e '/^\([a-z_][a-z_]*\) /s//\1 gen_/' On all other systems the input would be transformed: int something() -> int gen_something() On the broken system, the transformation is not don

sed not working

2005-09-02 Thread Rein Kadastik
Hi I have a problem with sed on one of my systems. Lets take the following command: sed -e '/^\([a-z_][a-z_]*\) /s//\1 gen_/' On all other systems the input would be transformed: int something() -> int gen_something() On the broken system, the transformation is not done: int something() -> in