diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2013-01-31 18:52:08 +0100 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-02-04 16:25:23 +0100 |
commit | fa551077410019fb34460dc730950e93b62b2963 (patch) | |
tree | b62a70d8019559719eed3feafa40055276de970e /Makefile.am | |
parent | bf876d618399eece741bda45f606ff5749eb96c6 (diff) | |
download | sssd-fa551077410019fb34460dc730950e93b62b2963.tar.gz sssd-fa551077410019fb34460dc730950e93b62b2963.tar.xz sssd-fa551077410019fb34460dc730950e93b62b2963.zip |
Don't use srcdir with tests
Fixes build with automake 1.13 or newer.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am index 8a47af8dd..647082161 100644 --- a/Makefile.am +++ b/Makefile.am @@ -146,9 +146,9 @@ check_PROGRAMS = \ PYTHON_TESTS = if BUILD_PYTHON_BINDINGS -PYTHON_TESTS += $(srcdir)/src/config/SSSDConfigTest.py \ - $(srcdir)/src/tests/pyhbac-test.py \ - $(srcdir)/src/tests/pysss_murmur-test.py +PYTHON_TESTS += src/config/SSSDConfigTest.py \ + src/tests/pyhbac-test.py \ + src/tests/pysss_murmur-test.py endif TESTS = \ |