Displaying 2 results from an estimated 2 matches for "use_r_environ".
1999 Sep 10
0
problem in R.sh.in script
...his problem by apply following patch:
*** R.sh.in.orig Fri Sep 10 13:01:10 1999
--- R.sh.in Fri Sep 10 13:01:23 1999
***************
*** 48,54 ****
-g|--gnome)
R_BINARY="R.gnome" ;;
-d|--debugger)
! DBG="${2}"; shift 2 ;;
--no-environ)
USE_R_ENVIRON=false ;;
--vanilla)
--- 48,54 ----
-g|--gnome)
R_BINARY="R.gnome" ;;
-d|--debugger)
! DBG="${2}"; shift ;;
--no-environ)
USE_R_ENVIRON=false ;;
--vanilla)
--
Mitsuru Oka
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-....
1999 Dec 16
1
R-0.90.1 buglet in R shell (PR#375)
...ly took "." off my PATH for security reasons and now find
that R does not work in my home directory where the .Renviron
file resides.
The fix is simple. In the R shell startup section replace
". .Renviron" by ". ./.Renviron". The relevant section is:
# Startup
if ${USE_R_ENVIRON}; then # use the one in current dir, or default
if [ -r .Renviron ]
then . ./.Renviron # <<-- change
else [ -r ${R_ENVIRON} ] && . ${R_ENVIRON}
fi
fi
--
-----------------------------------------------------------------
Bill Venables, Statistician, CMIS Environmetrics Pr...