search for: 510c511

Displaying 1 result from an estimated 1 matches for "510c511".

Did you mean: 510,11
2010 Nov 30
1
proposal for new flag to R CMD INSTALL
...til at kjetil:~/R/R-devel/src/library/tools/R$ diff install.R.old install.R 116a117 > " --no-check-deps skip test if installed depends/imports", 506c507 < if (length(miss) > 1) --- > if ((length(miss) > 1) && check_deps) 510c511 < else if (length(miss)) --- > else if (length(miss) && check_deps) 1025a1027 > check_deps <- TRUE 1133a1136,1137 > } else if (a == "--no-check-deps") { > check_deps <- FALSE kjetil