Auto merge of #38111 - japaric:jemalloc, r=alexcrichton

don't rebuild alloc_jemalloc if jemalloc's .git directory has changed

the .git directory is modified by `bootstrap` when it updates this git
submodule; this triggered rebuilds every time `bootstrap` was called.

likely fixes #38094

r? @alexcrichton
This commit is contained in:
bors 2016-12-05 17:37:40 +00:00
commit 06b8d1d361
1 changed files with 1 additions and 0 deletions

View File

@ -69,6 +69,7 @@ fn main() {
.read_dir()
.unwrap()
.map(|e| e.unwrap())
.filter(|e| &*e.file_name() != ".git")
.collect::<Vec<_>>();
while let Some(entry) = stack.pop() {
let path = entry.path();