From fde2d4c0cb3788e382dd9d39038ced57e55ac748 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Fri, 5 Aug 2016 17:55:38 -0400 Subject: [PATCH] Tests: don't copy test_python_logging explicitly MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit cp would fail silently in OOT builds when trying to copy test_python_logging. This is no longer necessary as it is generated on configure. Signed-off-by: Jérémie Galarneau --- .../regression/ust/python-logging/Makefile.am | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/tests/regression/ust/python-logging/Makefile.am b/tests/regression/ust/python-logging/Makefile.am index 0e170a487..9d7e3fe09 100644 --- a/tests/regression/ust/python-logging/Makefile.am +++ b/tests/regression/ust/python-logging/Makefile.am @@ -1,21 +1,5 @@ #if USE_PYTHON -noinst_SCRIPTS = test_python_logging -EXTRA_DIST = test_python_logging test.py - -all-local: - @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ - for script in $(EXTRA_DIST); do \ - cp -f $(srcdir)/$$script $(builddir); \ - done; \ - fi - -clean-local: - rm -f *.class - @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ - for script in $(EXTRA_DIST); do \ - rm -f $(builddir)/$$script; \ - done; \ - fi +EXTRA_DIST = test.py #endif -- 2.34.1