diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2018-05-05 16:50:27 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2018-05-05 17:33:29 +0200 |
commit | c5865c50c444912afd92c2feb94d8739874a62b2 (patch) | |
tree | 8bfe4c23428c74d9ac220e1b457b79a17220a710 | |
parent | 45aa57f66055510616eb765de6e68a7cb59ecacf (diff) | |
download | meson-c5865c50c444912afd92c2feb94d8739874a62b2.zip meson-c5865c50c444912afd92c2feb94d8739874a62b2.tar.gz meson-c5865c50c444912afd92c2feb94d8739874a62b2.tar.bz2 |
gnome: Use the header basename for #include in mkenums_simple
Otherwise, when you use a File target, the value will be the full path
to the header from the build root, which is not what anyone wants.
-rw-r--r-- | mesonbuild/modules/gnome.py | 2 | ||||
-rw-r--r-- | test cases/frameworks/7 gnome/mkenums/meson.build | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/modules/gnome.py b/mesonbuild/modules/gnome.py index 84943dc..12f6412 100644 --- a/mesonbuild/modules/gnome.py +++ b/mesonbuild/modules/gnome.py @@ -1128,7 +1128,7 @@ This will become a hard error in the future.''') fhead += '%s\n' % body_prefix fhead += '#include "%s"\n' % hdr_filename for hdr in sources: - fhead += '#include "%s"\n' % hdr + fhead += '#include "%s"\n' % os.path.basename(str(hdr)) fhead += ''' #define C_ENUM(v) ((gint) v) #define C_FLAGS(v) ((guint) v) diff --git a/test cases/frameworks/7 gnome/mkenums/meson.build b/test cases/frameworks/7 gnome/mkenums/meson.build index 44c21cb..ff31619 100644 --- a/test cases/frameworks/7 gnome/mkenums/meson.build +++ b/test cases/frameworks/7 gnome/mkenums/meson.build @@ -118,7 +118,7 @@ enumexe3 = executable('enumprog3', main, enums_c3, enums_h3, dependencies : gobj) test('enum test 3', enumexe3) -enums4 = gnome.mkenums_simple('enums4', sources : 'meson-sample.h', +enums4 = gnome.mkenums_simple('enums4', sources : files('meson-sample.h'), function_prefix : '_') enumexe4 = executable('enumprog4', 'main4.c', enums4, dependencies : gobj) |