Merge "Update soong for ShouldFollowSymlinks argument to pathtools.Glob"

This commit is contained in:
Colin Cross
2018-09-25 23:57:46 +00:00
committed by Gerrit Code Review

View File

@@ -554,7 +554,7 @@ func existsWithDependencies(ctx PathContext, path SourcePath) (exists bool, err
var deps []string
// We cannot add build statements in this context, so we fall back to
// AddNinjaFileDeps
files, deps, err = pathtools.Glob(path.String(), nil)
files, deps, err = pathtools.Glob(path.String(), nil, pathtools.FollowSymlinks)
ctx.AddNinjaFileDeps(deps...)
}