Skip to content

Commit b6e5c0c

Browse files
committed
Revert "Correct handling of dependent file paths on Windows (use winslash = "/")"
This reverts commit 3c096d7.
1 parent 0dd0fb6 commit b6e5c0c

File tree

3 files changed

+1
-6
lines changed

3 files changed

+1
-6
lines changed

ChangeLog

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
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-
51
2016-04-13 Dirk Eddelbuettel <[email protected]>
62

73
* DESCRIPTION (Version): Rolling minor version and Date

inst/NEWS.Rd

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
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 = "/").
1817
}
1918
\item Changes in Rcpp Modules:
2019
\itemize{

src/attributes.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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)));

0 commit comments

Comments
 (0)