Merge "Follow symlinks in findleaves"

This commit is contained in:
Conley Owens
2012-09-04 10:24:54 -07:00
committed by android code review

View File

@@ -28,7 +28,7 @@ def perform_find(mindepth, prune, dirlist, filename):
pruneleaves = set(map(lambda x: os.path.split(x)[1], prune))
for rootdir in dirlist:
rootdepth = rootdir.count("/")
for root, dirs, files in os.walk(rootdir):
for root, dirs, files in os.walk(rootdir, followlinks=True):
# prune
check_prune = False
for d in dirs: