Skip to content

Commit

Permalink
Merge pull request #91870 from scgm0/fix_disabled_classes
Browse files Browse the repository at this point in the history
SCons: Fix generation of `disabled_classes.gen.h` after #91624
  • Loading branch information
akien-mga committed May 13, 2024
2 parents c5395d3 + 973d3a4 commit 3585c2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/SCsub
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def disabled_class_builder(target, source, env):
for c in source[0].read():
cs = c.strip()
if cs != "":
file.write(f"#define ClassDB_Disable_{cs} 1")
file.write(f"#define ClassDB_Disable_{cs} 1\n")


env.CommandNoCache("disabled_classes.gen.h", env.Value(env.disabled_classes), env.Run(disabled_class_builder))
Expand Down

0 comments on commit 3585c2e

Please sign in to comment.