Skip to content

Commit 4b2a1b6

Browse files
committed
fixup!
1 parent a2ea6f4 commit 4b2a1b6

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -836,6 +836,11 @@ out/doc/api: doc/api
836836

837837
# Generate all doc files (individual and all.html/all.json) in a single doc-kit call
838838
# Using grouped targets (&:) so Make knows one command produces all outputs
839+
ifeq ($(OSTYPE),aix)
840+
# TODO(@nodejs/web-infra): AIX is currently hanging during HTML minification
841+
$(apidocs_html) $(apidocs_json) out/doc/api/all.html out/doc/api/all.json:
842+
@echo "Skipping $@ (not currently supported by $(OSTYPE) machines)"
843+
else
839844
$(apidocs_html) $(apidocs_json) out/doc/api/all.html out/doc/api/all.json &: $(apidoc_sources) tools/doc/node_modules | out/doc/api
840845
@if [ "$(shell $(node_use_openssl_and_icu))" != "true" ]; then \
841846
echo "Skipping $@ (no crypto and/or no ICU)"; \
@@ -853,6 +858,7 @@ $(apidocs_html) $(apidocs_json) out/doc/api/all.html out/doc/api/all.json &: $(a
853858
--type-map doc/type-map.json \
854859
) \
855860
fi
861+
endif
856862

857863
out/doc/apilinks.json: $(wildcard lib/*.js) tools/doc/node_modules | out/doc
858864
@if [ "$(shell $(node_use_openssl_and_icu))" != "true" ]; then \

0 commit comments

Comments
 (0)