diff options
author | Thomas Haller <thaller@redhat.com> | 2016-10-12 10:42:23 +0200 |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2016-10-13 21:33:33 +0200 |
commit | 9f5b80d21510c516ec658e09058908c9759142ac (patch) | |
tree | c512d059519999b547f80ac7543c582cc2cfbd95 /libnm-glib | |
parent | 38d669d5ee5e13a8025acd5bb1a0e348662ca596 (diff) | |
download | NetworkManager-9f5b80d21510c516ec658e09058908c9759142ac.tar.gz |
build: don't guard check-local with "if ENABLE_TESTS"
We should enable tests by default, probably we even should drop
the configure flags to enable tests and just always build them.
Anyway, at this point there is no use in guarding check-local
with a check for ENABLE_TESTS. A user who does't want to run
the tests, should just not call `make check`.
Diffstat (limited to 'libnm-glib')
-rw-r--r-- | libnm-glib/Makefile.am | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libnm-glib/Makefile.am b/libnm-glib/Makefile.am index 6cb3e4b826..71fb7341ad 100644 --- a/libnm-glib/Makefile.am +++ b/libnm-glib/Makefile.am @@ -222,10 +222,5 @@ typelib_DATA = $(INTROSPECTION_GIRS:.gir=.typelib) CLEANFILES += $(gir_DATA) $(typelib_DATA) endif -if ENABLE_TESTS - check-local: $(top_srcdir)/tools/check-exports.sh $(builddir)/.libs/libnm-glib.so $(SYMBOL_VIS_FILE) - -endif - |