Re: R-beta: patch 2
Peter Dalgaard BSA (p.dalgaard@kubism.ku.dk)
03 Jun 1997 23:32:37 +0200
To: Larry P Ammann <ammann@utdallas.edu>
Subject: Re: R-beta: patch 2
From: Peter Dalgaard BSA <p.dalgaard@kubism.ku.dk>
Date: 03 Jun 1997 23:32:37 +0200
In-Reply-To: Larry P Ammann's message of Tue, 3 Jun 1997 13:42:12 -0500 (CDT)
Message-Id: <x2u3jfqsne.fsf@bush.kubism.ku.dk>
Larry P Ammann <ammann@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@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@stat.math.ethz.ch
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=