diff options
author | Christoph Reiter <reiter.christoph@gmail.com> | 2019-05-22 16:41:15 +0000 |
---|---|---|
committer | Christoph Reiter <reiter.christoph@gmail.com> | 2019-05-22 16:41:15 +0000 |
commit | 9c229eccafedb3df2ad8544084ab4b5291b1c7ea (patch) | |
tree | f7be0680cdb84958e6830a770b6c6db191e89764 /atk/meson.build | |
parent | b90ba45bb0baf61e06c06eac94b6f08b3dce864f (diff) | |
parent | db2d7a6d3c45fe57420d5e5aa8d8509c52943e6e (diff) | |
download | at-spi2-core-9c229eccafedb3df2ad8544084ab4b5291b1c7ea.tar.gz |
Merge branch 'fix-gir-cross' into 'master'
atk/meson.build: do not guard gir behind a cross_build check.
See merge request GNOME/atk!12
Diffstat (limited to 'atk/meson.build')
-rw-r--r-- | atk/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/atk/meson.build b/atk/meson.build index 0ad67e59..1d2a49cd 100644 --- a/atk/meson.build +++ b/atk/meson.build @@ -137,7 +137,7 @@ libatk_dep = declare_dependency(link_with: libatk, dependencies: glib_dep, sources: atk_enum_h) -if not meson.is_cross_build() and get_option('introspection') +if get_option('introspection') gnome.generate_gir(libatk, sources: atk_sources + atk_headers + [ atk_enum_h ] + [ atk_version_h ], namespace: 'Atk', |