Skip to content

Commit b71edf4

Browse files
committed
tools: don't build node for doc build
Building node binary is not necessary for doc builds. Refer: nodejs#9436 (comment)
1 parent c5678d3 commit b71edf4

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Makefile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -303,8 +303,7 @@ apidoc_dirs = out/doc out/doc/api/ out/doc/api/assets
303303

304304
apiassets = $(subst api_assets,api/assets,$(addprefix out/,$(wildcard doc/api_assets/*)))
305305

306-
doc-only: $(apidocs_html) $(apidocs_json)
307-
doc: $(NODE_EXE) doc-only
306+
doc: $(apidocs_html) $(apidocs_json)
308307

309308
$(apidoc_dirs):
310309
mkdir -p $@
@@ -750,5 +749,5 @@ endif
750749
blog blogclean tar binary release-only bench-http-simple bench-idle \
751750
bench-all bench bench-misc bench-array bench-buffer bench-net \
752751
bench-http bench-fs bench-tls cctest run-ci test-v8 test-v8-intl \
753-
test-v8-benchmarks test-v8-all v8 lint-ci bench-ci jslint-ci doc-only \
752+
test-v8-benchmarks test-v8-all v8 lint-ci bench-ci jslint-ci \
754753
$(TARBALL)-headers test-ci test-ci-native test-ci-js build-ci

0 commit comments

Comments
 (0)