diff options
author | Daniel Petrica <dape@sestofb10.enea.se> | 2019-12-03 09:12:11 +0100 |
---|---|---|
committer | Miruna Paun <mrpa@enea.se> | 2019-12-03 09:57:15 +0100 |
commit | 36f9f38a89130ef1010f24198549294f3dcaf063 (patch) | |
tree | f2bbd59e105f1c71a057fc23d693c9b642c37fe0 | |
parent | 4fc7337c84986c5a947f82421fad0e71c9b48f00 (diff) | |
download | nfv-access-documentation-36f9f38a89130ef1010f24198549294f3dcaf063.tar.gz |
USERDOCAP-436 - Improve handling of documentation build err
Change-Id: I97ec6d39e8f67dca7a275cec030896b89b6e2aec
-rw-r--r-- | doc/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/Makefile b/doc/Makefile index 11505e2..dc5b36b 100644 --- a/doc/Makefile +++ b/doc/Makefile | |||
@@ -50,14 +50,14 @@ DOCBOOK_TO_BOOKDIR ?= yes | |||
50 | DOCBOOK_CLEANTMP ?= yes | 50 | DOCBOOK_CLEANTMP ?= yes |
51 | 51 | ||
52 | #Components (books) in this subsystem. Now use all books found here | 52 | #Components (books) in this subsystem. Now use all books found here |
53 | COMPONENTS := book-enea-nfv-access-example-usecases book-enea-nfv-access-getting-started book-enea-nfv-access-open-source book-enea-nfv-access-release-info book-enea-nfv-access-vnf-onboarding-guide book-enea-nfv-access-reference-guide-intel book-enea-nfv-access-auto-fw-th-user-guide book-enea-nfv-access-system-test-specification book-enea-nfv-access-cmc-example-usecases | 53 | COMPONENTS := book-enea-nfv-access-auto-fw-th-user-guide book-enea-nfv-access-cmc-example-usecases book-enea-nfv-access-example-usecases book-enea-nfv-access-getting-started book-enea-nfv-access-open-source book-enea-nfv-access-release-info book-enea-nfv-access-system-test-specification |
54 | # COMPONENTS += | 54 | # COMPONENTS += |
55 | #book-enea-linux-eclipse-open-source | 55 | #book-enea-linux-eclipse-open-source |
56 | #book-enea-nfv-access-dev-hardening-guide | 56 | #book-enea-nfv-access-dev-hardening-guide |
57 | #book-enea-nfv-access-esdk-open-source | 57 | #book-enea-nfv-access-esdk-open-source |
58 | #book-enea-nfv-access-guide | 58 | #book-enea-nfv-access-guide |
59 | #book-enea-nfv-access-sdk-open-source | 59 | #book-enea-nfv-access-sdk-open-source |
60 | #book-enea-nfv-access-user-hardening-guide | 60 | #book-enea-nfv-access-user-hardening-guide |
61 | 61 | ||
62 | #COMPONENTS := $(shell ls -d book-enea* ) | 62 | #COMPONENTS := $(shell ls -d book-enea* ) |
63 | 63 | ||
@@ -158,7 +158,7 @@ ifeq ($(COMP),) | |||
158 | doc: | 158 | doc: |
159 | ifneq ($(filter book-%, $(COMPONENTS)),) | 159 | ifneq ($(filter book-%, $(COMPONENTS)),) |
160 | $(VERB)for comp in $(filter book-%, $(COMPONENTS)); do \ | 160 | $(VERB)for comp in $(filter book-%, $(COMPONENTS)); do \ |
161 | $(MAKE) doc COMP=$$comp; \ | 161 | $(MAKE) doc COMP=$$comp || exit 10;\ |
162 | done | 162 | done |
163 | endif | 163 | endif |
164 | 164 | ||