You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
537 B
18 lines
537 B
umask 027
|
|
setenv DXHOME {{ dx_home }}/dxserver
|
|
set path = ( $DXHOME/bin $path )
|
|
if ( ! $?LD_LIBRARY_PATH ) then
|
|
setenv LD_LIBRARY_PATH $DXHOME/bin
|
|
else
|
|
setenv LD_LIBRARY_PATH $DXHOME/bin:${LD_LIBRARY_PATH}
|
|
endif
|
|
set filec
|
|
|
|
if !($?LD_LIBRARY_PATH) then
|
|
setenv LD_LIBRARY_PATH {{ java_home }}/lib/i386/native_threads
|
|
else
|
|
if ( "`echo LD_LIBRARY_PATH | grep {{ java_home }}`" == "" ) then
|
|
setenv LD_LIBRARY_PATH ${LD_LIBRARY_PATH}:{{ java_home }}/lib/i386/native_threads
|
|
endif
|
|
endif
|
|
setenv POSIXLY_CORRECT 1
|
|
|