We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c35420d commit de82db7Copy full SHA for de82db7
Makefile
@@ -168,7 +168,10 @@ test/addons/.buildstamp: config.gypi \
168
test/addons/.docbuildstamp
169
# Cannot use $(wildcard test/addons/*/) here, it's evaluated before
170
# embedded addons have been generated from the documentation.
171
+# Ignore folders without binding.gyp (#14843)
172
@for dirname in test/addons/*/; do \
173
+ if [ ! -f "$$PWD/$${dirname}binding.gyp" ]; then \
174
+ continue; fi ; \
175
printf "\nBuilding addon $$PWD/$$dirname\n" ; \
176
env MAKEFLAGS="-j1" $(NODE) deps/npm/node_modules/node-gyp/bin/node-gyp \
177
--loglevel=$(LOGLEVEL) rebuild \
0 commit comments