File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 112020-03-31 Dirk Eddelbuettel <edd@debian.org>
22
33 * docker/ci-dev/Dockerfile: Also install the 'codetools' package
4- 2020-03-31 Kevin Ushey <kevin@rstudio.com>
4+
5+ 2020-03-31 Kevin Ushey <kevin@rstudio.com>
56
67 * R/Attributes.R: Fix for sourceCpp() on Windows w/R-devel
78
Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ sourceCpp <- function(file = "",
134134 src <- context $ cppSourceFilename
135135
136136 # prepare the command (output if we are in showOutput mode)
137- cmd <- paste (
137+ args <- c (
138138 r , " CMD" , " SHLIB" ,
139139 if (windowsDebugDLL ) " -d" ,
140140 if (rebuild ) " --preclean" ,
@@ -145,6 +145,7 @@ sourceCpp <- function(file = "",
145145 shQuote(src )
146146 )
147147
148+ cmd <- paste(args , collapse = " " )
148149 if (showOutput )
149150 cat(cmd , " \n " ) # #nocov
150151
You can’t perform that action at this time.
0 commit comments