summaryrefslogtreecommitdiff
path: root/builds
diff options
context:
space:
mode:
authorIssam E. Maghni <issam.e.maghni@mailbox.org>2021-04-24 17:21:17 -0400
committerWerner Lemberg <wl@gnu.org>2021-04-25 20:30:43 +0200
commitf998eaf9728b831d8447dbda4e3fba4b6f98cbfa (patch)
tree1bdb2d95095fc9b16181efd6a0a3b6a2da6ace8d /builds
parentc78f78fab46669235aa9fa20e37e35b14773d2e0 (diff)
downloadfreetype2-f998eaf9728b831d8447dbda4e3fba4b6f98cbfa.tar.gz
* 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.
Diffstat (limited to 'builds')
-rw-r--r--builds/meson/process_ftoption_h.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/builds/meson/process_ftoption_h.py b/builds/meson/process_ftoption_h.py
index a6e949c12..fe6088785 100644
--- a/builds/meson/process_ftoption_h.py
+++ b/builds/meson/process_ftoption_h.py
@@ -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)