Skip to content

Commit

Permalink
Merge pull request #88025 from shana/fix-incremental-builds
Browse files Browse the repository at this point in the history
SCons: Fix incremental builds breaking when querying the dependency tree from a SCsub
  • Loading branch information
akien-mga committed Feb 7, 2024
2 parents 67234ea + 0b43b01 commit 6b1e50b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ env_base["x86_libtheora_opt_gcc"] = False
env_base["x86_libtheora_opt_vc"] = False

# avoid issues when building with different versions of python out of the same directory
env_base.SConsignFile(".sconsign{0}.dblite".format(pickle.HIGHEST_PROTOCOL))
env_base.SConsignFile(File("#.sconsign{0}.dblite".format(pickle.HIGHEST_PROTOCOL)).abspath)

# Build options

Expand Down

0 comments on commit 6b1e50b

Please sign in to comment.