We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4957726 commit 7da45f8Copy full SHA for 7da45f8
Makefile
@@ -267,7 +267,10 @@ test/addons/.buildstamp: config.gypi \
267
test/addons/.docbuildstamp
268
# Cannot use $(wildcard test/addons/*/) here, it's evaluated before
269
# embedded addons have been generated from the documentation.
270
+# Ignore folders without binding.gyp (#14843)
271
@for dirname in test/addons/*/; do \
272
+ if [ ! -f "$$PWD/$${dirname}binding.gyp" ]; then \
273
+ continue; fi ; \
274
printf "\nBuilding addon $$PWD/$$dirname\n" ; \
275
env MAKEFLAGS="-j1" $(NODE) deps/npm/node_modules/node-gyp/bin/node-gyp \
276
--loglevel=$(LOGLEVEL) rebuild \
0 commit comments