diff options
| author | Jani Nikula <jani@nikula.org> | 2014-03-26 09:48:12 +0100 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2014-03-26 07:43:36 -0300 |
| commit | d7d728a6220e490eae2445fd3b6afec470c8cf6a (patch) | |
| tree | b9b0b8096685b4075bdbabb5269fa6605adda534 /test/Makefile.local | |
| parent | 03680d10066f85887c1198925a7b297b27435919 (diff) | |
test: conditionally test help system depending on configured support
If neither sphinx nor rst2man is available, the notmuch man pages will
not be available. Take this into account in the help system test.
Diffstat (limited to 'test/Makefile.local')
| -rw-r--r-- | test/Makefile.local | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/Makefile.local b/test/Makefile.local index 2b18bdb9..987441f0 100644 --- a/test/Makefile.local +++ b/test/Makefile.local @@ -42,10 +42,18 @@ else ln -sf /bin/false $@ endif +$(dir)/have-man: Makefile.config +ifeq ($(HAVE_SPHINX)$(HAVE_RST2MAN),00) + ln -sf /bin/false $@ +else + ln -sf /bin/true $@ +endif + .PHONY: test check TEST_BINARIES=$(dir)/arg-test \ $(dir)/have-compact \ + $(dir)/have-man \ $(dir)/hex-xcode \ $(dir)/random-corpus \ $(dir)/parse-time \ |
