520cc8
commit 7b36d26b22d147ffc347f427f9fd584700578a94
520cc8
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
520cc8
Date:   Mon Dec 3 14:40:48 2018 +0100
520cc8
520cc8
    Fix test-as-const-jmp_buf-ssp.c generation on gnu-i386
520cc8
    
520cc8
    hurd's jmp_buf-ssp.sym does not define any symbol.
520cc8
    scripts/gen-as-const.py currently was emitting an empty line in that
520cc8
    case, and the gawk invocation was prepending "asconst_" to it, ending up
520cc8
    with:
520cc8
    
520cc8
    .../build/glibc/setjmp/test-as-const-jmp_buf-ssp.c:1:2: error: expected « = », « , », « ; », « asm » or
520cc8
    « __attribute__ » at end of input
520cc8
        1 |  asconst_
520cc8
          |  ^~~~~~~~
520cc8
    
520cc8
            * scripts/gen-as-const.py (main): Avoid emitting empty line when
520cc8
            there is no element in `consts'.
520cc8
520cc8
diff --git a/scripts/gen-as-const.py b/scripts/gen-as-const.py
520cc8
index b7a5744bb192dd67..cabf401ed15e8367 100644
520cc8
--- a/scripts/gen-as-const.py
520cc8
+++ b/scripts/gen-as-const.py
520cc8
@@ -153,7 +153,7 @@ def main():
520cc8
         print(gen_test(sym_data))
520cc8
     else:
520cc8
         consts = compute_c_consts(sym_data, args.cc)
520cc8
-        print('\n'.join('#define %s %s' % c for c in sorted(consts.items())))
520cc8
+        print(''.join('#define %s %s\n' % c for c in sorted(consts.items())), end='')
520cc8
 
520cc8
 if __name__ == '__main__':
520cc8
     main()