Skip to content

Commit 7aa5ec3

Browse files
authored
Fix internal error in compilers() (#313)
1 parent 21421a5 commit 7aa5ec3

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

R/compilation-db.R

+3
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,9 @@ compilers <- function() {
188188
)
189189
makevars <- unlist(lapply(makevars, function(var) if (length(var)) c("-f", var)))
190190

191+
# Add silent flag to avoid unwanted output
192+
makevars <- c("-s", makevars)
193+
191194
# These variables are normally set by frontends but just in case
192195
env <- c(
193196
"current",

0 commit comments

Comments
 (0)