The R Project SVN R

Rev

Rev 34123 | Rev 34722 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 34123 Rev 34129
Line 140... Line 140...
140
## take care not to  override the command-line setting
140
## take care not to  override the command-line setting
141
if test "${libdir}" = '${exec_prefix}/lib'; then
141
if test "${libdir}" = '${exec_prefix}/lib'; then
142
  libdir='${exec_prefix}/${LIBnn}'
142
  libdir='${exec_prefix}/${LIBnn}'
143
fi
143
fi
144
 
144
 
-
 
145
## R installation directories
-
 
146
m4_divert_once([HELP_BEGIN], [
-
 
147
R installation directories:
-
 
148
  --libdir=DIR        R files to R_HOME=DIR/R @<:@EPREFIX/$LIBnn@:>@
-
 
149
    rdocdir=DIR       R doc files to DIR      @<:@R_HOME/doc@:>@
-
 
150
    rincludedir=DIR   R include files to DIR  @<:@R_HOME/include@:>@
-
 
151
    rsharedir=DIR     R share files to DIR    @<:@R_HOME/share@:>@])dnl
-
 
152
 
-
 
153
if test -z ${rdocdir}; then
-
 
154
  rdocdir='${rhome}/doc'
-
 
155
fi
-
 
156
AC_SUBST([rdocdir])
-
 
157
 
-
 
158
if test -z ${rincludedir}; then
-
 
159
  rincludedir='${rhome}/include'
-
 
160
fi
-
 
161
AC_SUBST([rincludedir])
-
 
162
 
-
 
163
if test -z ${rsharedir}; then
-
 
164
  rsharedir='${rhome}/share'
-
 
165
fi
-
 
166
AC_SUBST([rsharedir])
-
 
167
 
145
### ** Handle arguments to configure.
168
### ** Handle arguments to configure.
146
 
169
 
147
config_opts="${ac_configure_args}"
170
config_opts="${ac_configure_args}"
148
AC_SUBST(config_opts)
171
AC_SUBST(config_opts)
149
 
172