Loading ui/build/soong.go +2 −1 Original line number Diff line number Diff line Loading @@ -27,6 +27,7 @@ import ( "strings" "sync" "sync/atomic" "syscall" "time" "android/soong/ui/tracer" Loading Loading @@ -780,7 +781,7 @@ func checkGlobs(ctx Context, finalOutFile string) error { hasNewDep := false for _, dep := range cachedGlob.Deps { info, err := os.Stat(dep) if errors.Is(err, fs.ErrNotExist) { if errors.Is(err, fs.ErrNotExist) || errors.Is(err, syscall.ENOTDIR) { hasNewDep = true break } else if err != nil { Loading Loading
ui/build/soong.go +2 −1 Original line number Diff line number Diff line Loading @@ -27,6 +27,7 @@ import ( "strings" "sync" "sync/atomic" "syscall" "time" "android/soong/ui/tracer" Loading Loading @@ -780,7 +781,7 @@ func checkGlobs(ctx Context, finalOutFile string) error { hasNewDep := false for _, dep := range cachedGlob.Deps { info, err := os.Stat(dep) if errors.Is(err, fs.ErrNotExist) { if errors.Is(err, fs.ErrNotExist) || errors.Is(err, syscall.ENOTDIR) { hasNewDep = true break } else if err != nil { Loading