2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-22 01:46:15 +01:00

docs - write a newline in example file to remove warning with solaris compilers

This commit is contained in:
Thomas Nagy 2015-10-10 09:20:55 +02:00
parent ec0263f47c
commit 369bae306f
No known key found for this signature in database
GPG Key ID: 67A565EDFDF90E64

View File

@ -1,7 +1,7 @@
#! /usr/bin/env python
def write_header(tsk):
tsk.outputs[0].write('int abc = 423;')
tsk.outputs[0].write('int abc = 423;\n')
bld(rule=write_header, target='b.h', ext_out=['.h'])
bld.program(