Skip to content

Commit ed45617

Browse files
committed
build: exclude more machines from doc gen
1 parent 4431abc commit ed45617

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -836,8 +836,8 @@ 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
839+
ifneq (,$(filter aix os390,$(OSTYPE)))
840+
# TODO(@nodejs/web-infra): AIX and OS390 are not handling WASM very well
841841
$(apidocs_html) $(apidocs_json) out/doc/api/all.html out/doc/api/all.json:
842842
@echo "Skipping $@ (not currently supported by $(OSTYPE) machines)"
843843
else

0 commit comments

Comments
 (0)