File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -299,7 +299,8 @@ test/addons/.buildstamp: config.gypi \
299299	test/addons/.docbuildstamp
300300# 	Cannot use $(wildcard test/addons/*/) here, it's evaluated before
301301# 	embedded addons have been generated from the documentation.
302- # 	Ignore folders without binding.gyp (#14843)
302+ # 	Ignore folders without binding.gyp
303+ # 	(https://github.com/nodejs/node/issues/14843)
303304	@for dirname in test/addons/*/; do \
304305		if [ ! -f "$$PWD/$${dirname}binding.gyp" ]; then \
305306			continue; fi ; \
@@ -337,7 +338,11 @@ test/addons-napi/.buildstamp: config.gypi \
337338	src/node_api.h src/node_api_types.h
338339# 	Cannot use $(wildcard test/addons-napi/*/) here, it's evaluated before
339340# 	embedded addons have been generated from the documentation.
341+ # 	Ignore folders without binding.gyp
342+ # 	(https://github.com/nodejs/node/issues/14843)
340343	@for dirname in test/addons-napi/*/; do \
344+ 		if [ ! -f "$$PWD/$${dirname}binding.gyp" ]; then \
345+ 			continue; fi ; \
341346		printf "\nBuilding addon $$PWD/$$dirname\n" ; \
342347		env MAKEFLAGS="-j1" $(NODE) deps/npm/node_modules/node-gyp/bin/node-gyp \
343348		        --loglevel=$(LOGLEVEL) rebuild \
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments