Skip to content

CONTENTS, TITLE not generated

2 messages · Christian Schulz, Brian Ripley

#
Hi all,

Using   R Version 1.5.0  (2002-04-29)  under Solaris I am reinstalling own 
packages useing the script

#!/bin/csh
cd ~/R/Sources
R CMD check --no-latex --no-perms --no-install $1
R CMD INSTALL --library=lib $1
R CMD Rdindex $1 > INDEX
R CMD build --force $1

Everything echoes with OK, *but* the files CONTENTS and TITLE will not be 
generated. What has changed in the process of compilation?

Thank you for any pointers.

--christian

Dr.sc.math.Christian W. Hoffmann
Mathematics and Statistical Computing
Landscape Dynamics and Spatial Development
Swiss Federal Research Institute WSL
Zuercherstrasse 111
CH-8903 Birmensdorf, Switzerland
phone: ++41-1-739 22 77    fax: ++41-1-739 22 15
e-mail: christian.hoffmann at wsl.ch
www: http://www.wsl.ch/staff/christian.hoffmann/

-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help 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-help-request at stat.math.ethz.ch
_._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._
#
On Mon, 19 Aug 2002, Christian Hoffmann wrote:

            
I bet they are generated, in the place you installed the packages.  They
are not part of the sources and not written in the source tree.

There is no point in building the INDEX and then running `R CMD build
--force' which rebuilds it.

If you really want to re-install, just use

R CMD INSTALL --library=lib $1

If you want to check the sources and then keep a .tar.gz for distribution,
use

R CMD check $1
R CMD build --force $1