On 2/15/06, Brandin Creech <[EMAIL PROTECTED]> wrote:
> --- M Sandell <[EMAIL PROTECTED]> wrote:
>
> > When I was installing the UnZip package (Chpt 11, BLFS 6.1) the command
> > from the book:
> >
> > LD_LIBRARY_PATH=$PWD && make check
>
> export LD_LIBRARY_PATH=$PWD && make check
That would work
On Wed, 2006-02-15 at 11:19 -0800, Brandin Creech wrote:
> It seems to be a mistake. The way the shell works, the command
> LD_LIBRARY_PATH=$PWD only sets a local variable, and it is not
> exported.
> Unless a variable is exported, external commands like 'make check'
> will not
> see its contents.
--- M Sandell <[EMAIL PROTECTED]> wrote:
> When I was installing the UnZip package (Chpt 11, BLFS 6.1) the command
> from the book:
>
> LD_LIBRARY_PATH=$PWD && make check
>
> failed. Although LD_LIBRARY_PATH was set appropriately by the command,...
It seems to be a mistake. The way the shell