Werner Lemberg pushed to branch master at FreeType / FreeType
Commits:
-
f998eaf9
by Issam E. Maghni at 2021-04-25T20:30:43+02:00
2 changed files:
Changes:
1 |
+2021-04-25 Issam E. Maghni <issam.e.maghni@mailbox.org>
|
|
2 |
+ |
|
3 |
+ * builds/meson/process_ftoption_h.py: Add LF at EOF.
|
|
4 |
+ |
|
5 |
+ This fixes
|
|
6 |
+ |
|
7 |
+ .../ftoption.h:1030:10: error:
|
|
8 |
+ no newline at end of file [-Werror,-Wnewline-eof]
|
|
9 |
+ |
|
10 |
+ for the generated `ftoption.h` file.
|
|
11 |
+ |
|
1 | 12 |
2021-04-24 Alexei Podtelezhnikov <apodtele@gmail.com>
|
2 | 13 |
|
3 | 14 |
* src/cff/cffload.c (cff_index_get_pointers): s/FT_QALLOC/FT_ALLOC/.
|
... | ... | @@ -92,7 +92,7 @@ def main(): |
92 | 92 |
line = "#define " + option_name
|
93 | 93 |
new_lines.append(line)
|
94 | 94 |
|
95 |
- result = "\n".join(new_lines)
|
|
95 |
+ result = "\n".join(new_lines) + "\n"
|
|
96 | 96 |
|
97 | 97 |
# Sanity check that all command-line options were actually processed.
|
98 | 98 |
cmdline_options = set(args.enable) | set(args.disable)
|