Skip to content

Commit 2e8031c

Browse files
committed
suppression of 'Recompiling' message didn't work for Base.compile subprocesses, so no point in a halfway solution
1 parent c889d6f commit 2e8031c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

base/loading.jl

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -361,9 +361,7 @@ end
361361
function recompile_stale(mod, cachefile)
362362
cachestat = stat(cachefile)
363363
if iswritable(cachestat) && stale_cachefile(cachefile, cachestat.mtime)
364-
if isinteractive() || 0 != ccall(:jl_generating_output, Cint, ())
365-
info("Recompiling stale cache file $cachefile for module $mod.")
366-
end
364+
info("Recompiling stale cache file $cachefile for module $mod.")
367365
create_expr_cache(find_in_path(string(mod)), cachefile)
368366
end
369367
end

0 commit comments

Comments
 (0)