in reply to Re: Re: RSH calling a shell script .profile issue
in thread RSH calling a shell script .profile issue

Like this:
#!/bin/bash # or /bin/ksh, or .... # set this to the right home path HOME=/home/compileUser . ~/.profile cd pathToMakeIn make ...
Make sense?
--
Mike

Replies are listed 'Best First'.
Re: Re: RSH calling a shell script .profile issue
by brentmaier (Initiate) on Mar 20, 2002 at 21:18 UTC
    This worked Mike... I was missing the HOME line and that just so happened to be the issue. I never thought this would be that difficult until you start coding such a monster. Thanks for your input guys...
Re: Re: RSH calling a shell script .profile issue
by brentmaier (Initiate) on Mar 25, 2002 at 16:51 UTC
    Hello Mike... This worked, it's funny how simple it is to screw something up. I attempted to do what you suggested but I was missing one thing... The HOME= which was causing my problems either with .profile loading or how make was referencing HOME. Anyway, adding it took care of the problem. Meant to reply sooner but the page was really slow Friday... Thx again.