Displaying 2 results from an estimated 2 matches for "configure_var".
Did you mean:
configure_vars
2003 Dec 11
1
bug + insufficient doc in R CMD INSTALL (PR#5703)
...ir=/usr/local/netcdf/lib" ncdf_1.1.tar.gz
and, of course, although I'm using the ncdf package as an example for
concreteness, this is a general problem for any R package.
The place in INSTALL.in that seems to be problematic is this bit:
----------------------------------
configure_args=
configure_vars=
with_package_versions=false
save="CHECK"
save_args=
fake=false
while test -n "${1}"; do
case ${1} in
-h|--help)
echo "${usage}"; exit 0 ;;
...skip stuff...
--configure-args=*)
configure_args=`echo "${1}" | sed -e 's/[^=]*=//'`...
2012 Dec 20
0
How to make an <pkg>/configure file executable on Windows/NTFS?
...d my packages/tar balls on Windows. Is there are way to
build it such that aroma.affymetrix/configure is executable?
*** Looking at the code
(http://svn.r-project.org/R/trunk/src/library/tools/R/install.R),
there is
if (file_test("-x", "configure")) {
cmd <- paste(paste(configure_vars, collapse = " "), "./configure",
paste(configure_args, collapse = " "))
if (debug) message("configure command: ", sQuote(cmd), domain = NA)
res <- system(cmd)
if (res) pkgerrmsg("configuration failed", pkg_name)
} else if (file.exists(&qu...