The R check command has a slight error in it. Line # 123 reads $#ARGV <= 1 || die "no packages were specified"; The logical comparison should be reversed and modified, so it reads $#ARGV >= 0 || die "no packages were specified"; The original bug gives somewhat unexpected results. Since $#ARGV evaluates to the number of arguments minus 1, the check command works fine with 1 or 2 arguments but not with more than 2. Another, probably already known, cosmetic thing. The nls package has the word Authors in the DESCRIPTION file and fails its check. The word needs to read Author. Cheers, Andy Jaworski -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-devel-request@stat.math.ethz.ch _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._
>>>>> apjaworski writes:> The R check command has a slight error in it. Line # 123 reads > $#ARGV <= 1 || die "no packages were specified";> The logical comparison should be reversed and modified, so it reads> $#ARGV >= 0 || die "no packages were specified";> The original bug gives somewhat unexpected results. Since $#ARGV > evaluates to the number of arguments minus 1, the check command works > fine with 1 or 2 arguments but not with more than 2.> Another, probably already known, cosmetic thing. The nls package has > the word Authors in the DESCRIPTION file and fails its check. The > word needs to read Author.Thanks, both fixed. -k -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-devel-request@stat.math.ethz.ch _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._