Skip to content

R CMD check

2 messages · John Bjørnar Bremnes, Brian Ripley

#
when using R CMD check mypkg I get the error message
...
* checking R files for library.dynam ... OK
* checking generic/method consistency ... WARNING
Error in .loadPackageQuietly(package, lib.loc) :
         Error in parse(file, n, text, prompt) : syntax error on line 95
Execution halted
* checking for assignment functions with final arg not named 'value' ... 
WARNING
Error in .loadPackageQuietly(package, lib.loc) :
         Error in parse(file, n, text, prompt) : syntax error on line 95
Execution halted
...

What can I do to avoid this? I use R-1.7.0 on Linux RedHat.

Any suggestions are appreciated.
#
You have an error in the R files of your package.  Before you even do
R CMD check, do try loading the package in R.
On Mon, 30 Jun 2003, John Bj?rnar Bremnes wrote: