diff options
author | John Dennis <jdennis@redhat.com> | 2015-03-21 14:57:26 (GMT) |
---|---|---|
committer | Benjamin Dauvergne <bdauvergne@entrouvert.com> | 2015-03-23 13:28:48 (GMT) |
commit | bbcee8a4801905bec8469fb0f5def44456a7ad20 (patch) | |
tree | 749d6a10f5b0b02ca9eb2a8667fdf0bdace7b489 /bindings | |
parent | ec73384ccf704096daf9b9151e5c5389e047ec96 (diff) | |
download | lasso-bbcee8a4801905bec8469fb0f5def44456a7ad20.zip lasso-bbcee8a4801905bec8469fb0f5def44456a7ad20.tar.gz lasso-bbcee8a4801905bec8469fb0f5def44456a7ad20.tar.bz2 |
Fix build failures
Fix a mistake in the documentation markup that prevented the
doc from building, needed to reverse the order of two tags.
Remove the $(PYTHON) from TESTS_ENVIRONMENT, it was causing
python to be invoked passing /bin/sh to it as a script.
License: MIT
Signed-off-by: John Dennis <jdennis@redhat.com>
Diffstat (limited to 'bindings')
-rw-r--r-- | bindings/python/tests/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/python/tests/Makefile.am b/bindings/python/tests/Makefile.am index 0580897..205e761 100644 --- a/bindings/python/tests/Makefile.am +++ b/bindings/python/tests/Makefile.am @@ -1,7 +1,7 @@ MAINTAINERCLEANFILES = Makefile.in TESTS = # -TESTS_ENVIRONMENT=TOP_SRCDIR=$(top_srcdir) $(PYTHON) +TESTS_ENVIRONMENT=TOP_SRCDIR=$(top_srcdir) if PYTHON_ENABLED TESTS += profiles_tests.py binding_tests.py |