[Rcpp-commits] r3932 - pkg/Rcpp/R

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Sat Nov 10 21:20:20 CET 2012


Author: jjallaire
Date: 2012-11-10 21:20:20 +0100 (Sat, 10 Nov 2012)
New Revision: 3932

Modified:
   pkg/Rcpp/R/Attributes.R
Log:
correct path for file.remove

Modified: pkg/Rcpp/R/Attributes.R
===================================================================
--- pkg/Rcpp/R/Attributes.R	2012-11-10 20:13:01 UTC (rev 3931)
+++ pkg/Rcpp/R/Attributes.R	2012-11-10 20:20:20 UTC (rev 3932)
@@ -82,7 +82,7 @@
         # unload and delete existing dylib if necessary
         if (file.exists(context$dynlibPath)) {
             dyn.unload(context$dynlibPath)
-            file.remove(context$dylibPath)
+            file.remove(context$dynlibPath)
         }
            
         # prepare the command (output if we are in showOutput mode)



More information about the Rcpp-commits mailing list