Output redirection?

2006-01-28 Thread Yuri Karlsbrun
Hello, I, probably, need bash-help mailing list, but I could not find it. Here is the bash script fragment: LOG_FILE="./logfile" ... >$LOG_FILE I supposed that the statement above redirects stdout to the logfile. But the following 'echo' statement prints on the screen. The logfile is opened. Wha

bash for cross-target

2006-02-13 Thread Yuri Karlsbrun
Hi, I build bash v3.1 for cross-target. I configured bash like this: CC= AR= RANLIB= /configure --host= --target= --build=i686-pc-linux-gnu --disable-nls --prefix= 1. To complete build I had to comment out running test on cross-target. 2. Build picks up headers from /usr/include, not from the di

RE: bash for cross-target

2006-02-13 Thread Yuri Karlsbrun
> Bash doesn't specify /usr/include at all. Isn't it the responsibility > of the compiler to choose an appropriate set of default include > directories? > When I build other applications for my target, I have no problems with headers. When I explicitly included header's path (CPPFLAGS="-I"), it

RE: bash for cross-target

2006-02-13 Thread Yuri Karlsbrun
> -Original Message- > From: Mike Frysinger [mailto:[EMAIL PROTECTED] > > > 1. To complete build I had to comment out running test on cross- > target. > > > > The usual solution for this is to create a config.cache file with the > > correct values for the cache variables in question. > >