RE: interactive shell is incorrect

2003-06-06 Thread David Thompson
[snip] >Can you help suggest experiments? Maybe this shows the problem is bash, $ cat ~/.bashrc echo Hello bashrc $ /bin/bash -c /bin/pwd Hello bashrc /home/davidt/tmp $ /bin/sh -c /bin/pwd /home/davidt/tmp Why does bash think it's running interactively when the -c

RE: interactive shell is incorrect

2003-06-06 Thread David Thompson
> From: Paul D. Smith [mailto:[EMAIL PROTECTED] > %% David Thompson <[EMAIL PROTECTED]> writes: > dt> BASH_ENV is no, but ENV is yes. > > dt> $ echo $BASE_ENV > > dt> $ echo $ENV > dt> /home/davidt/.kshrc > > dt> My login shell is ksh93, so naturally I'm using ENV > dt> with ks

Re: make error with pro*c redhat 7.2

2003-06-06 Thread Paul D. Smith
%% "Guy L" <[EMAIL PROTECTED]> writes: gl> getting this error while using make with the precompiler Pro*C (linux gl> Redhat 7.2). gl> GNU Make version 3.79.1 gl> Here is the error: gl> [make] : *** [sample9.o] segmentation fault This means your compiler dumped core. Try running the

RE: make error with pro*c redhat 7.2

2003-06-06 Thread lasse.makholm
>From http://www.gnu.org/manual/make-3.79.1/html_mono/make.html#SEC124 : `[foo] signal description' These errors are not really make errors at all. They mean that a program that make invoked as part of a command script returned a non-0 error code (`Error NN'), which make interprets as failure,

make error with pro*c redhat 7.2

2003-06-06 Thread Guy L
Hello,   getting this error while using make with the precompiler Pro*C (linux Redhat 7.2). GNU Make version 3.79.1 Here is the error: [make] : *** [sample9.o] segmentation fault   How to fix that     Thank a lot   Guy L.   ___ Bug-make mailing list

RE: interactive shell is incorrect

2003-06-06 Thread Paul D. Smith
%% David Thompson <[EMAIL PROTECTED]> writes: dt> BASH_ENV is no, but ENV is yes. dt> $ echo $BASE_ENV dt> $ echo $ENV dt> /home/davidt/.kshrc dt> My login shell is ksh93, so naturally I'm using ENV dt> with ksh, not bash. Doesn't matter. ENV handling is a requirement of the

RE: interactive shell is incorrect

2003-06-06 Thread David Thompson
> From: Paul D. Smith [mailto:[EMAIL PROTECTED] Thanks for your quick response! > dt> Could someone explain this behavior? > Maybe. Do you have either the $ENV or $BASH_ENV variables > set? If so that probably explains the behavior. See the > bash man page for more information. BASH_ENV is no

RE: interactive shell is incorrect

2003-06-06 Thread lasse.makholm
> -Original Message- > From: ext David Thompson [mailto:[EMAIL PROTECTED] > Sent: Friday, June 06, 2003 1:52 AM > To: 'Paul D. Smith' > Cc: '[EMAIL PROTECTED]' > Subject: RE: interactive shell is incorrect > > > > [snip] > >Can you help suggest experiments? > > Maybe this shows the pr

Re: interactive shell is incorrect

2003-06-06 Thread Paul D. Smith
%% "David Thompson" <[EMAIL PROTECTED]> writes: dt> Could someone explain this behavior? Maybe. Do you have either the $ENV or $BASH_ENV variables set? If so that probably explains the behavior. See the bash man page for more information. Also note that on some Linux systems /bin/sh (which

Re: $(eval within conditional causes "missing `endif'" error

2003-06-06 Thread Paul D. Smith
%% "Jan Beulich" <[EMAIL PROTECTED]> writes: jb> investigating the possibilities the new features in make 3.80 jb> offer I found that I cannot have an $(eval inside any sort of jb> conditional. As the mailing list documents that this has already jb> been observed I'd like to find out what