Skip to content

Commit 20236c6

Browse files
ContainerFindIncludes: Add some temporary variables
This slightly cleans up a function call. Signed-off-by: Matthijs Kooijman <[email protected]>
1 parent dc04f4b commit 20236c6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/arduino.cc/builder/container_find_includes.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,8 @@ func writeCache(cache *includeCache, path string) error {
292292

293293
func findIncludesUntilDone(ctx *types.Context, cache *includeCache, sourceFile types.SourceFile) error {
294294
sourcePath := sourceFile.SourcePath(ctx)
295+
depPath := sourceFile.DepfilePath(ctx)
296+
objPath := sourceFile.ObjectPath(ctx)
295297
targetFilePath := utils.NULLFile()
296298

297299
// TODO: This should perhaps also compare against the
@@ -306,7 +308,7 @@ func findIncludesUntilDone(ctx *types.Context, cache *includeCache, sourceFile t
306308
// TODO: This reads the dependency file, but the actual building
307309
// does it again. Should the result be somehow cached? Perhaps
308310
// remove the object file if it is found to be stale?
309-
unchanged, err := builder_utils.ObjFileIsUpToDate(ctx, sourcePath, sourceFile.ObjectPath(ctx), sourceFile.DepfilePath(ctx))
311+
unchanged, err := builder_utils.ObjFileIsUpToDate(ctx, sourcePath, objPath, depPath)
310312
if err != nil {
311313
return i18n.WrapError(err)
312314
}

0 commit comments

Comments
 (0)