Skip to content

Commit c5d3b57

Browse files
committed
quote ldflags on Windows (closes #188)
1 parent 878b6e7 commit c5d3b57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/utils.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ asBuildPath <- function(path) {
1111
path <- utils::shortPathName(path)
1212

1313
# if we still have spaces, and we're not Windows or Solaris, try quoting
14-
if (grepl(" ", path, fixed = TRUE) && !is_windows() && !is_solaris())
14+
if (grepl(" ", path, fixed = TRUE) && !is_solaris())
1515
path <- shQuote(path)
1616

1717
# ensure we use forward slashes, even on Windows

0 commit comments

Comments
 (0)