diff options
Diffstat (limited to '.tcsh/heainit.csh')
-rw-r--r-- | .tcsh/heainit.csh | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/.tcsh/heainit.csh b/.tcsh/heainit.csh index c1a8a04..ddd6c1c 100644 --- a/.tcsh/heainit.csh +++ b/.tcsh/heainit.csh @@ -2,14 +2,13 @@ # # HEASOFT settings # -unset printexitvalue -set HEA_STATE=`echo $PATH | tr ':' '\n' | grep 'heasoft'` -if ( "x${HEA_STATE}" == "x" ) then - source $HEADAS/headas-init.csh -endif -unset HEA_STATE +source $HEADAS/headas-init.csh # set HEA_LDLIB="`echo $LD_LIBRARY_PATH | tr ':' '\n' | grep 'heasoft' | head -n 1`" +if ( $?LD_LIBRARY_PATH_BAK ) then + setenv LD_LIBRARY_PATH "${LD_LIBRARY_PATH_BAK}" +endif + exit 0 |