Re: [R] R CMD build not excluding .svn

2007-10-01 Thread Michael Lawrence
Thanks for the help. I looked into it further and noticed that the src/RGtk2 directory was actually a symlink. The perl find() does not follow symlinks, as invoked, but tar, as invoked, does. Thus, when the tar/untar effectively copies the files, there is a mismatch with the exclude paths. Is ther

Re: [R] R CMD build not excluding .svn

2007-10-01 Thread Prof Brian Ripley
It does this via an exclude list which it uses to remove files from a staged build. Printing out the exclude list (at ca line 232) should be informative. One possibility is simply that there is a permissions issue in deleting that directory. On Sun, 30 Sep 2007, Michael Lawrence wrote: > Hi,

[R] R CMD build not excluding .svn

2007-09-30 Thread Michael Lawrence
Hi, In my package RGtk2, there's a directory called 'src/RGtk2' that contains, like all the other directories in the package, a '.svn' directory. It seems that R CMD build is somehow missing that one '.svn' in 'src/RGtk2', even though it excludes all the other instances of '.svn'. I've tried putt