* builds/meson/process_ftoption_h.py: Add LF at EOF.
This fixes .../ftoption.h:1030:10: error: no newline at end of file [-Werror,-Wnewline-eof] for the generated `ftoption.h` file.
This commit is contained in:
parent
c78f78fab4
commit
f998eaf972
11
ChangeLog
11
ChangeLog
|
@ -1,3 +1,14 @@
|
|||
2021-04-25 Issam E. Maghni <issam.e.maghni@mailbox.org>
|
||||
|
||||
* builds/meson/process_ftoption_h.py: Add LF at EOF.
|
||||
|
||||
This fixes
|
||||
|
||||
.../ftoption.h:1030:10: error:
|
||||
no newline at end of file [-Werror,-Wnewline-eof]
|
||||
|
||||
for the generated `ftoption.h` file.
|
||||
|
||||
2021-04-24 Alexei Podtelezhnikov <apodtele@gmail.com>
|
||||
|
||||
* src/cff/cffload.c (cff_index_get_pointers): s/FT_QALLOC/FT_ALLOC/.
|
||||
|
|
|
@ -92,7 +92,7 @@ def main():
|
|||
line = "#define " + option_name
|
||||
new_lines.append(line)
|
||||
|
||||
result = "\n".join(new_lines)
|
||||
result = "\n".join(new_lines) + "\n"
|
||||
|
||||
# Sanity check that all command-line options were actually processed.
|
||||
cmdline_options = set(args.enable) | set(args.disable)
|
||||
|
|
Loading…
Reference in New Issue