Mailing List Archives
Authenticated access
|
|
|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Condor-users] Library access problem
- Date: Mon, 6 Mar 2006 22:05:06 -0600
- From: Erik Paulson <epaulson@xxxxxxxxxxx>
- Subject: Re: [Condor-users] Library access problem
On Mon, Mar 06, 2006 at 07:15:49PM -0800, Junaid N. Sahibzada wrote:
> enivornment = LD_LIBRARY_PATH=/usr/lib:/nfs/mid/projects/Registration/vtkCISG/lib:/nfs/mid/projects/Registration/vtkCISG/tcl/vtkview/include:/usr/local/lib/vtk:/nfs/mid/projects/Registration/vtkCISG/lib:/nfs/mid/homes/sah006/bhautik
environment is misspelled. Alas, condor doesn't complain when this happens.
(Actually - we're thinking about changing it so it does complain when
it sees a word it doesn't use - what it breaks is macros, right now you
can do:
some_missplledd_werd = foo
executable = $(some_missplledd_werd)
what we'd change it to is is
set macro_name = macro_value
executable = $(macro_name)
And if condor_submit saw anything other than a keyword it knew, 'set', or
'+', it would complain.
There are a couple of options to make it backwards-compatiable with old
submit files. Does anyone out there have strong feelings about this?)
-Erik