am d65bb799: am 86ffa1cd: am 5da7ec4f: Merge "Follow symlinks in findleaves"

* commit 'd65bb799ab31699067fd3b61b106a067575b154f':
  Follow symlinks in findleaves
This commit is contained in:
Conley Owens 2012-09-04 11:08:16 -07:00 committed by Android Git Automerger
commit 52bd431e37
1 changed files with 1 additions and 1 deletions

View File

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