diff options
Diffstat (limited to 'test/plugin_sphinx.mk')
-rw-r--r-- | test/plugin_sphinx.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/plugin_sphinx.mk b/test/plugin_sphinx.mk index 915bf8b..834a273 100644 --- a/test/plugin_sphinx.mk +++ b/test/plugin_sphinx.mk @@ -2,14 +2,14 @@ # Disable this test suite when sphinx is not installed. ifeq ($(shell which sphinx-build),) -SPHINX_TARGETS = +sphinx_TARGETS = else -SPHINX_TARGETS = $(call list_targets,sphinx) +sphinx_TARGETS = $(call list_targets,sphinx) endif -.PHONY: sphinx $(SPHINX_TARGETS) +.PHONY: sphinx $(sphinx_TARGETS) -sphinx: $(SPHINX_TARGETS) +sphinx: $(sphinx_TARGETS) sphinx-build: init |