From 612d3255b8d61bb5d6ab7fdec6771bac43c5e441 Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Thu, 30 Mar 2023 02:55:06 +0700 Subject: [PATCH] tests: do not depend on undefined $(BUILT_SOURCES) Change-Id: I7536be8aa3f0ab39f183e00cf4382636038db4b7 --- tests/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Makefile.am b/tests/Makefile.am index b9f0279..806bfb1 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -35,7 +35,7 @@ DISTCLEANFILES = \ $(NULL) if ENABLE_EXT_TESTS -python-tests: $(BUILT_SOURCES) +python-tests: echo "" # TODO: Enable once we have a VTY/CTRL interface: # $(MAKE) vty-test @@ -43,7 +43,7 @@ python-tests: $(BUILT_SOURCES) # osmotestconfig.py -p $(abs_top_srcdir) -w $(abs_top_builddir) -v # $(srcdir)/ctrl_test_runner.py -w $(abs_top_builddir) -v else -python-tests: $(BUILT_SOURCES) +python-tests: echo "Not running python-based tests (determined at configure-time)" endif