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
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
> 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
> -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.
>
>