Displaying 1 result from an estimated 1 matches for "find_cinclude_path".
Did you mean:
find_cinclude_paths
2008 Jun 04
1
"ignoring environment value of R_HOME" error when installing packages
...from <R_HOME>/bin/R:
if test -n "${R_HOME}" && \
test "${R_HOME}" != "${R_HOME_DIR}"; then
echo "WARNING: ignoring environment value of R_HOME"
fi
- Here is line 606 of <R_HOME>/bin/INSTALL:
CLINK_CPPFLAGS=`echo
"tools:::.find_cinclude_paths(file='DESCRIPTION')" | \
"${R_EXE}" --vanilla --slave`
The work-around:
First some background. The command sequence "R CMD INSTALL" sets in
motion a sequence of scripts that collectively manage the installation
process.
"R" <R_HO...