0001-disable-tests.patch 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. From 473b4288d8f4e891d0d21f7b60ef8053c5cd7af9 Mon Sep 17 00:00:00 2001
  2. From: Adam Duskett <aduskett@gmail.com>
  3. Date: Mon, 3 Feb 2020 10:07:15 -0800
  4. Subject: [PATCH] disable tests
  5. If introspection data on the host is not built, meson throws the error:
  6. "Unknown variable "typelibs". Because tests are not required, removing
  7. the subdir tests alltogether fixes this issue.
  8. Signed-off-by: Adam Duskett <aduskett@gmail.com>
  9. ---
  10. meson.build | 6 ------
  11. 1 file changed, 6 deletions(-)
  12. diff --git a/meson.build b/meson.build
  13. index eed4d6b..5058664 100644
  14. --- a/meson.build
  15. +++ b/meson.build
  16. @@ -214,12 +214,6 @@ if get_option('build_introspection_data') == true
  17. endif
  18. subdir('docs')
  19. -# The tests will also run, which is not possible if they
  20. -# were built for a different architecture.
  21. -if not meson.is_cross_build()
  22. - subdir('tests')
  23. -endif
  24. -
  25. install_data('Makefile.introspection', install_dir: join_paths(get_option('datadir'), 'gobject-introspection-1.0'))
  26. install_data('m4/introspection.m4', install_dir: join_paths(get_option('datadir'), 'aclocal'))
  27. --
  28. 2.24.1