From 4852ee8cebb2e0a6c00d3ddf41fe85f54a43240e Mon Sep 17 00:00:00 2001 From: Soapux <35306504+Soapux@users.noreply.github.com> Date: Tue, 26 May 2020 13:46:24 -0500 Subject: Fix lack of space after 'Cflags:' in pkgconfig files --- mesonbuild/modules/pkgconfig.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mesonbuild/modules') diff --git a/mesonbuild/modules/pkgconfig.py b/mesonbuild/modules/pkgconfig.py index 7597eeb..18baf0c 100644 --- a/mesonbuild/modules/pkgconfig.py +++ b/mesonbuild/modules/pkgconfig.py @@ -379,7 +379,7 @@ class PkgConfigModule(ExtensionModule): return cflags_buf cflags = generate_compiler_flags() - ofile.write('Cflags:') + ofile.write('Cflags: ') if uninstalled: ofile.write(' '.join(generate_uninstalled_cflags(deps.pub_libs + deps.priv_libs))) elif not dataonly and cflags: -- cgit v1.1