Skip to content

Commit 49be421

Browse files
committed
remove unnecessary quotes
1 parent 3f5e4cd commit 49be421

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/install.libs.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ splitCompilerVar <- function(compilerVar, flagsVar) {
232232
forwardEnvVar <- function(envVar, cmakeVar) {
233233
envVal <- Sys.getenv(envVar, unset = NA)
234234
if (!is.na(envVal)) {
235-
sprintf("-D%s=%s", cmakeVar, shQuote(envVal))
235+
sprintf("-D%s=%s", cmakeVar, envVal)
236236
}
237237
}
238238

0 commit comments

Comments
 (0)