File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff 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
857863out/doc/apilinks.json : $(wildcard lib/* .js) tools/doc/node_modules | out/doc
858864 @if [ " $( shell $( node_use_openssl_and_icu) ) " != " true" ]; then \
You can’t perform that action at this time.
0 commit comments