diff --git a/Makefile b/Makefile index e14edb2a034173..9aaa42bcd602c9 100644 --- a/Makefile +++ b/Makefile @@ -64,6 +64,8 @@ V ?= 0 available-node = \ if [ -x $(PWD)/$(NODE) ] && [ -e $(PWD)/$(NODE) ]; then \ $(PWD)/$(NODE) $(1); \ + elif [ -x $(PWD)/$(NODE_G_EXE) ] && [ -e $(PWD)/$(NODE_G_EXE) ]; then \ + $(PWD)/$(NODE_G_EXE) $(1); \ elif [ -x `which node` ] && [ -e `which node` ] && [ `which node` ]; then \ `which node` $(1); \ else \