The R Project SVN R

Rev

Rev 30217 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 30217 Rev 34044
Line 11... Line 11...
11
R_OSTYPE="unix"
11
R_OSTYPE="unix"
12
export R_OSTYPE
12
export R_OSTYPE
13
 
13
 
14
## Add 'share/perl' to the perl library path.
14
## Add 'share/perl' to the perl library path.
15
if test -n "${PERL5LIB}"; then
15
if test -n "${PERL5LIB}"; then
16
  PERL5LIB="${R_HOME}/share/perl:${PERL5LIB}"
16
  PERL5LIB="${R_SHARE_DIR}/perl:${PERL5LIB}"
17
  export PERL5LIB
17
  export PERL5LIB
18
else
18
else
19
  PERLLIB="${R_HOME}/share/perl:${PERLLIB}"
19
  PERLLIB="${R_SHARE_DIR}/perl:${PERLLIB}"
20
  export PERLLIB
20
  export PERLLIB
21
fi
21
fi
22
 
22
 
23
## Add 'share/texmf' to TeX's input search path.
23
## Add 'share/texmf' to TeX's input search path.
24
TEXINPUTS=".:${R_HOME}/share/texmf:${TEXINPUTS}"
24
TEXINPUTS=".:${R_SHARE_DIR}/texmf:${TEXINPUTS}"
25
export TEXINPUTS
25
export TEXINPUTS
26
 
26
 
27
. "${R_HOME}/etc/Renviron"
27
. "${R_HOME}/etc/Renviron"
28
export `sed 's/^ *#.*//; s/^\(.*\)=.*/\1/' "${R_HOME}/etc/Renviron"`
28
export `sed 's/^ *#.*//; s/^\(.*\)=.*/\1/' "${R_HOME}/etc/Renviron"`
29
 
29