diff options
author | Guillaume Poirier-Morency <guillaumepoiriermorency@gmail.com> | 2016-10-07 09:06:23 -0400 |
---|---|---|
committer | Guillaume Poirier-Morency <guillaumepoiriermorency@gmail.com> | 2016-10-16 11:04:40 -0400 |
commit | a33c5c50f1f5460048c492a4cb10a689f61587e7 (patch) | |
tree | 9cd64c19aca883a6da46e75db488de64e3142624 | |
parent | e9f66b19305aa709d43f8395a6008638467d45d5 (diff) | |
download | meson-a33c5c50f1f5460048c492a4cb10a689f61587e7.zip meson-a33c5c50f1f5460048c492a4cb10a689f61587e7.tar.gz meson-a33c5c50f1f5460048c492a4cb10a689f61587e7.tar.bz2 |
pkgconfig: Rename 'CFlags' for 'Cflags'
-rw-r--r-- | mesonbuild/modules/pkgconfig.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/modules/pkgconfig.py b/mesonbuild/modules/pkgconfig.py index 0cd2b57..de40cda 100644 --- a/mesonbuild/modules/pkgconfig.py +++ b/mesonbuild/modules/pkgconfig.py @@ -75,7 +75,7 @@ class PkgConfigModule: mlog.log(mlog.red('WARNING:'), msg.format(l.name, 'name_suffix', lname, pcfile)) ofile.write(' -l{} '.format(lname)) ofile.write('\n') - ofile.write('CFlags:') + ofile.write('Cflags:') for h in subdirs: if h == '.': h = '' |