>From aaf0f8071f48d79424aa7517f4b95078d3cd00bd Mon Sep 17 00:00:00 2001 From: Jakub Hrozek Date: Thu, 31 Jan 2013 18:52:08 +0100 Subject: [PATCH] Don't use srcdir with tests Fixes build with automake 1.13 or newer. --- Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index 42ef8e0fa628ac5e1d07ff8d4fb6800c4c59a2eb..fc5595e6c0f57444c9b1b865626c24b953d8f3f1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -100,8 +100,8 @@ check_PROGRAMS = \ PYTHON_TESTS = if BUILD_PYTHON_BINDINGS -PYTHON_TESTS += $(srcdir)/src/config/SSSDConfigTest.py \ - $(srcdir)/src/tests/pyhbac-test.py +PYTHON_TESTS += src/config/SSSDConfigTest.py \ + src/tests/pyhbac-test.py endif TESTS = \ -- 1.8.2.1