File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed
Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1+ 2013-05-24 J.J. Allaire <
[email protected] >
2+
3+ * src/attributes.cpp: Correct handling of dependent file paths on Windows (use winslash = "/")
4+
152016-04-13 Dirk Eddelbuettel <
[email protected] >
26
37 * DESCRIPTION (Version): Rolling minor version and Date
Original file line number Diff line number Diff line change 1414 \itemize {
1515 \item R 3.3.0 Windows with Rtools 3.3 is now supported (Qin Wenfeng in PR
1616 \ghpr {451 }).
17+ \item Correct handling of dependent file paths on Windows (use winslash = " /" ).
1718 }
1819 \item Changes in Rcpp Modules :
1920 \itemize {
Original file line number Diff line number Diff line change @@ -851,7 +851,7 @@ namespace attributes {
851851 // if it exists then normalize and add to our list
852852 LogicalVector exists = fileExists (include);
853853 if (exists[0 ]) {
854- include = normalizePath (include);
854+ include = normalizePath (include, " / " );
855855 if (addUniqueDependency (include, pDependencies)) {
856856 newDependencies.push_back (
857857 FileInfo (Rcpp::as<std::string>(include)));
You can’t perform that action at this time.
0 commit comments