[Rinside-commits] r203 - in pkg: . R

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Sat Apr 16 13:43:22 CEST 2011


Author: edd
Date: 2011-04-16 13:43:22 +0200 (Sat, 16 Apr 2011)
New Revision: 203

Modified:
   pkg/ChangeLog
   pkg/DESCRIPTION
   pkg/R/RInsidePaths.R
Log:
let RInsideCxxFlags return -I/some/path and not -I"/some/path" which screws up direct shell expansion at the bash prompt


Modified: pkg/ChangeLog
===================================================================
--- pkg/ChangeLog	2011-04-03 20:44:29 UTC (rev 202)
+++ pkg/ChangeLog	2011-04-16 11:43:22 UTC (rev 203)
@@ -1,5 +1,11 @@
+2011-04-16  Dirk Eddelbuettel  <edd at debian.org>
+
+	* R/RInsidePaths.R (RInsideCxxFlags): Do not use quotes around path
+
 2011-04-03  Dirk Eddelbuettel  <edd at debian.org>
 
+	* inst/examples/qt/: Moved merged SVN+PNG files back into top-level
+
 	* inst/examples/qt/qtdensitySVG/qtdensity.pro: No longer need to set
 	-Wno-unused-parameter as Rcpp 0.9.3 has a fix
 

Modified: pkg/DESCRIPTION
===================================================================
--- pkg/DESCRIPTION	2011-04-03 20:44:29 UTC (rev 202)
+++ pkg/DESCRIPTION	2011-04-16 11:43:22 UTC (rev 203)
@@ -1,6 +1,6 @@
 Package: RInside
 Title: C++ classes to embed R in C++ applications
-Version: 0.2.3.1
+Version: 0.2.3.2
 Date: $Date$
 Author: Dirk Eddelbuettel and Romain Francois
 Maintainer: Dirk Eddelbuettel and Romain Francois <RomainAndDirk at r-enthusiasts.com>

Modified: pkg/R/RInsidePaths.R
===================================================================
--- pkg/R/RInsidePaths.R	2011-04-03 20:44:29 UTC (rev 202)
+++ pkg/R/RInsidePaths.R	2011-04-16 11:43:22 UTC (rev 203)
@@ -40,8 +40,8 @@
     # if (.Platform$OS.type=="windows") {
     #     path <- shQuote(path)
     # }
-    sprintf('-I"%s"', path)
-}     
+    sprintf('-I%s', path)
+}
 
 ## Shorter names, and call cat() directly
 CxxFlags <- function() {



More information about the Rinside-commits mailing list