diff options
| author | Michael Biebl <biebl@debian.org> | 2018-07-01 20:59:09 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2018-07-01 20:59:09 +0200 |
| commit | 6106f75cc14c2d8af6999bd28dd075c32411deaf (patch) | |
| tree | 2e084cc81011fc5cec703704f2ff5b65f5a7fa8d /Makefile.am | |
| parent | e8b3308b1970e9b71b443479351e173cb89e3800 (diff) | |
| parent | 429393567647935d9123e21fd27a7529d50255eb (diff) | |
Update upstream source from tag 'upstream/1.12.0'
Update to upstream version '1.12.0' with Debian dir 76506925b30952acfa95c8f5b789bcfb2a8e3a6e
Diffstat (limited to 'Makefile.am')
| -rw-r--r-- | Makefile.am | 25 |
1 files changed, 20 insertions, 5 deletions
diff --git a/Makefile.am b/Makefile.am index 7eef51d3..cdb5cfc9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -382,6 +382,11 @@ EXTRA_DIST += \ $(dbusinterfaces_DATA) \ introspection/meson.build +check-docs: + $(srcdir)/tools/check-docs.sh "$(srcdir)" + +check_local += check-docs + ############################################################################### libnm_core_lib_h_pub_real = \ @@ -4517,14 +4522,23 @@ libnm_glib_tests_cppflags = \ $(DBUS_CFLAGS) \ $(NULL) -libnm_glib_tests_programs_req_introspection = \ - libnm-glib/tests/test-nm-client \ - libnm-glib/tests/test-remote-settings-client +if HAVE_INTROSPECTION +check-local-libnm-glib-nm-client: libnm-glib/tests/test-nm-client + ( $(LOG_COMPILER) "$(builddir)/libnm-glib/tests/test-nm-client"; r="$$?"; test "$$r" = 0 -o "$$r" = 77 ) || \ + ( $(LOG_COMPILER) "$(builddir)/libnm-glib/tests/test-nm-client"; r="$$?"; test "$$r" = 0 -o "$$r" = 77 ) || \ + ( $(LOG_COMPILER) "$(builddir)/libnm-glib/tests/test-nm-client"; r="$$?"; test "$$r" = 0 -o "$$r" = 77 ) || \ + ( $(LOG_COMPILER) "$(builddir)/libnm-glib/tests/test-nm-client"; r="$$?"; test "$$r" = 0 -o "$$r" = 77 ) || \ + ( $(LOG_COMPILER) "$(builddir)/libnm-glib/tests/test-nm-client"; r="$$?"; test "$$r" = 0 -o "$$r" = 77 ) || \ + false + +check_local += check-local-libnm-glib-nm-client +endif +check_programs_norun += libnm-glib/tests/test-nm-client if HAVE_INTROSPECTION -check_programs += $(libnm_glib_tests_programs_req_introspection) +check_programs += libnm-glib/tests/test-remote-settings-client else -check_programs_norun += $(libnm_glib_tests_programs_req_introspection) +check_programs_norun += libnm-glib/tests/test-remote-settings-client endif libnm_glib_tests_test_nm_client_CPPFLAGS = $(libnm_glib_tests_cppflags) @@ -4806,6 +4820,7 @@ EXTRA_DIST += \ shared/nm-version-macros.h.in \ shared/meson.build \ \ + tools/check-docs.sh \ tools/check-exports.sh \ tools/create-exports-NetworkManager.sh \ tools/debug-helper.py \ |