Skip to content

Commit 1cefead

Browse files
authored
Merge pull request #1261 from RcppCore/fix/windows-quote
remove command quoting in sourceCpp
2 parents 476bb31 + 4a28ee0 commit 1cefead

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2023-03-27 Iñaki Ucar <[email protected]>
2+
3+
* R/Attributes.R: Remove command quoting, not needed anymore for system2()
4+
* inst/tinytest/test_xptr.R: Update copyright
5+
16
2023-03-26 Dirk Eddelbuettel <[email protected]>
27

38
* DESCRIPTION (Version, Date): Roll minor version

R/Attributes.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11

22
# Copyright (C) 2012 - 2022 JJ Allaire, Dirk Eddelbuettel and Romain Francois
3+
# Copyright (C) 2023 JJ Allaire, Dirk Eddelbuettel, Romain Francois and Iñaki Ucar
34
#
45
# This file is part of Rcpp.
56
#
@@ -130,7 +131,6 @@ sourceCpp <- function(file = "",
130131

131132
# grab components we need to build command
132133
r <- file.path(R.home("bin"), "R")
133-
if (.Platform$OS.type == "windows") r <- shQuote(r)
134134
lib <- context$dynlibFilename
135135
deps <- context$cppDependencySourcePaths
136136
src <- context$cppSourceFilename

inst/tinytest/test_xptr.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
## Copyright (C) 2009 - 2020 Dirk Eddelbuettel and Romain Francois
3-
## Copyright (C) 2021 Dirk Eddelbuettel, Romain Francois and Iñaki Ucar
3+
## Copyright (C) 2021 - 2023 Dirk Eddelbuettel, Romain Francois and Iñaki Ucar
44
##
55
## This file is part of Rcpp.
66
##

0 commit comments

Comments
 (0)