Re: [Fink-devel] [Fwd: zsh as shell in compilescript on 10.6 breaks 32bit Fink]

2009-09-07 Thread William G. Scott
On Sep 7, 2009, at 5:23 AM, Martin Costabel wrote: Somehow one needs to place that path-prefix back in front of the PATH, but since this is distribution and architecture dependent, to do so can become quite a mess. Hi Martin: I am working on pdb2pqr, an apbs dependency that uses

Re: [Fink-devel] [Fwd: zsh as shell in compilescript on 10.6 breaks 32bit Fink]

2009-09-07 Thread William G. Scott
Hi Martin: Fortunately the fix was much simpler for apbs. I just started the CompileScript with #!/bin/bash -efv source %p/bin/init.sh PATH=%p/bin:%p/sbin:${PATH} ; export PATH the last two lines are probably overkill, but to be on the safe side... Thanks (and sorry!!!). Bill On Sep 7,

Re: [Fink-devel] [Fwd: zsh as shell in compilescript on 10.6 breaks 32bit Fink]

2009-09-07 Thread Martin Costabel
William G. Scott wrote: On Sep 7, 2009, at 5:23 AM, Martin Costabel wrote: Somehow one needs to place that path-prefix back in front of the PATH, but since this is distribution and architecture dependent, to do so can become quite a mess. Hi Martin: I am working on pdb2pqr, an

Re: [Fink-devel] [Fwd: zsh as shell in compilescript on 10.6 breaks 32bit Fink]

2009-09-07 Thread William G. Scott
On Sep 7, 2009, at 10:08 AM, Martin Costabel wrote: William G. Scott wrote: #!/bin/zsh -f source %p/bin/init.sh PATH=%p/bin:%p/sbin:${PATH} ; export PATH this appears to put everything right, at least in my experiment. But on 10.6 gcc then would still be /usr/bin/gcc (which produces

Re: [Fink-devel] [Fwd: zsh as shell in compilescript on 10.6 breaks 32bit Fink]

2009-09-07 Thread Martin Costabel
William G. Scott wrote: On Sep 7, 2009, at 10:08 AM, Martin Costabel wrote: William G. Scott wrote: #!/bin/zsh -f source %p/bin/init.sh PATH=%p/bin:%p/sbin:${PATH} ; export PATH this appears to put everything right, at least in my experiment. But on 10.6 gcc then would still be