Browse Source

Add a missing IS_DEPS=1 for docs deps

Loïc Hoguin 7 years ago
parent
commit
05b1ea7d76
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/docs.mk

+ 1 - 1
core/docs.mk

@@ -16,5 +16,5 @@ ifneq ($(SKIP_DEPS),)
 doc-deps:
 doc-deps:
 else
 else
 doc-deps: $(ALL_DOC_DEPS_DIRS)
 doc-deps: $(ALL_DOC_DEPS_DIRS)
-	$(verbose) set -e; for dep in $(ALL_DOC_DEPS_DIRS) ; do $(MAKE) -C $$dep; done
+	$(verbose) set -e; for dep in $(ALL_DOC_DEPS_DIRS) ; do $(MAKE) -C $$dep IS_DEP=1; done
 endif
 endif