R-beta: patch 2

Peter Dalgaard BSA p.dalgaard at kubism.ku.dk
Tue Jun 3 23:32:37 CEST 1997


Larry P Ammann <ammann at utdallas.edu> writes:


> files it changes. Because of the way the makefile for the system database
> is structured, both the new files and the original files in
> $R_HOME/src/library/base/funs were being read into the system base file,
> $R_HOME/library/base. Since, for example, glm.orig is listed after glm,
> then all the original definitions superceded the new definitions.

*blink*

Holy smoke... 

$ more src/library/base/Makefile 
base:
        @echo building system base library
        @cat funs/[a-z]* |sed '/^[      ]*$$/d'  >../../../library/base
             ===========

Make that 

	@ls funs/[a-z]* | grep -v '\.orig$' | xargs cat | sed .....
or
	@cat `ls funs/[a-z]* | grep -v '\.orig$'` | sed ....

will ya', Ross?

-- 
   O__  ---- Peter Dalgaard             Blegdamsvej 3  
  c/ /'_ --- Dept. of Biostatistics     2200 Cph. N   
 (*) \(*) -- University of Copenhagen   Denmark      Ph: (+45) 35327918
~~~~~~~~~~ - (p.dalgaard at biostat.ku.dk)             FAX: (+45) 35327907
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
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
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=



More information about the R-help mailing list