From ed45617508bed3835c68139f707d6cdbf571d3bf Mon Sep 17 00:00:00 2001 From: avivkeller Date: Thu, 5 Mar 2026 10:26:34 -0500 Subject: [PATCH] build: exclude more machines from doc gen --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c50a5c26da16f5..5f38beec60bb54 100644 --- a/Makefile +++ b/Makefile @@ -836,8 +836,8 @@ out/doc/api: doc/api # Generate all doc files (individual and all.html/all.json) in a single doc-kit call # Using grouped targets (&:) so Make knows one command produces all outputs -ifeq ($(OSTYPE),aix) -# TODO(@nodejs/web-infra): AIX is currently hanging during HTML minification +ifneq (,$(filter aix os390,$(OSTYPE))) +# TODO(@nodejs/web-infra): AIX and OS390 are not handling WASM very well $(apidocs_html) $(apidocs_json) out/doc/api/all.html out/doc/api/all.json: @echo "Skipping $@ (not currently supported by $(OSTYPE) machines)" else