We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
nodejs
Learn more about funding links in repositories.
Report abuse
1 parent 5c8cd0e commit f5c0d74Copy full SHA for f5c0d74
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