Skip to content

Commit

Permalink
Fix write_buildconfig_header.py self-reference (#4999)
Browse files Browse the repository at this point in the history
This path changed way back in 55d6a5f ("Move //gn/* to //* (#3070)").
Remove the directory portion.
  • Loading branch information
mspang authored Feb 25, 2021
1 parent 3eddc00 commit ad27724
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/chip/write_buildconfig_header.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def GetOptions():

def WriteHeader(options):
with open(options.output, 'w') as output_file:
output_file.write("// Generated by gn/chip/write_buildconfig_header.py\n")
output_file.write("// Generated by write_buildconfig_header.py\n")
if options.rulename:
output_file.write('// From "' + options.rulename + '"\n')

Expand Down

0 comments on commit ad27724

Please sign in to comment.