diff options
author | Quentin Glidic <sardemff7+git@sardemff7.net> | 2013-02-02 17:01:07 +0100 |
---|---|---|
committer | Akira TAGOH <akira@tagoh.org> | 2013-02-06 19:53:36 +0900 |
commit | 96220a5ed9d1d761b14a7ac516ac6786c132f280 (patch) | |
tree | c040bb6866a782166ac3a1c76d3d24d32554d56b /doc | |
parent | 62b7d764ce994bb32e7614337fdfa0854445c380 (diff) |
Use LOG_COMPILER and AM_TESTS_ENVIRONMENT
TESTS_ENVIRONMENT is deprecated and should be reserved to the user to
override the test environment
<ext>_LOG_COMPILER is meant to contain the program that runs the test
with <ext> extension
LOG_COMPILER is for extensionless tests
AM_TESTS_ENVIRONMENT is meant to set the environment for the tests
https://bugs.freedesktop.org/show_bug.cgi?id=60192
Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile.am | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index c6b095c8..78a7cdbf 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -53,7 +53,10 @@ SUFFIXES = \ TESTS = \ check-missing-doc \ $(NULL) -TESTS_ENVIRONMENT=top_srcdir=${top_srcdir} sh +TESTS_ENVIRONMENT = \ + top_srcdir=${top_srcdir}; export top_srcdir; \ + $(NULL) +LOG_COMPILER = sh # DOC2HTML = docbook2html DOC2TXT = docbook2txt |