freetype-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Git][freetype/freetype][master] * builds/meson/process_ftoption_h.py: A


From: Werner Lemberg (@wl)
Subject: [Git][freetype/freetype][master] * builds/meson/process_ftoption_h.py: Add LF at EOF.
Date: Mon, 26 Apr 2021 07:52:49 +0000

Werner Lemberg pushed to branch master at FreeType / FreeType

Commits:

2 changed files:

Changes:

  • ChangeLog
    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/.
    

  • builds/meson/process_ftoption_h.py
    ... ... @@ -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)
    


  • reply via email to

    [Prev in Thread] Current Thread [Next in Thread]