Skip to content
Snippets Groups Projects
Commit 2e22c61d authored by Stephen A. Wood's avatar Stephen A. Wood
Browse files

Fix setup.csh to properly check if LD_LIBRARY_PATH is defined.

parent 954cff30
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,7 @@ set MYDIR=`cd $MYDIR && pwd` # ensure absolute path
setenv ANALYZER $MYDIR/podd
setenv HCANALYZER $MYDIR
# Check if LD_LIBRARY_PATH is defined
if ( $LD_LIBRARY_PATH == "" ) then
if ( ! ($?LD_LIBRARY_PATH) ) then
setenv LD_LIBRARY_PATH ""
endif
setenv LD_LIBRARY_PATH "${LD_LIBRARY_PATH}:${ANALYZER}:${HCANALYZER}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment