Skip to content

Commit f060b47

Browse files
committed
Fix environment variable name
1 parent 1fa83ba commit f060b47

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/make/lib/install/addons.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ install_node_addons_list_addons_flags := "--pattern $(node_addons_pattern)"
6161
# make install-node-addons
6262
#/
6363
install-node-addons: $(NODE_MODULES) clean-node-addons
64-
$(QUIET) $(MAKE) LIST_PACKAGE_ADDONS_FLAGS=$(install_node_addons_list_addons_flags) -f $(this_file) list-pkgs-addons | while read -r pkg; do \
64+
$(QUIET) $(MAKE) LIST_PKGS_ADDONS_FLAGS=$(install_node_addons_list_addons_flags) -f $(this_file) list-pkgs-addons | while read -r pkg; do \
6565
if echo "$$pkg" | grep -v '^\/.*\|^[a-zA-Z]:.*' >/dev/null; then \
6666
continue; \
6767
fi; \
@@ -84,7 +84,7 @@ install-node-addons: $(NODE_MODULES) clean-node-addons
8484
# make clean-node-addons
8585
#/
8686
clean-node-addons:
87-
$(QUIET) $(MAKE) LIST_PACKAGE_ADDONS_FLAGS=$(install_node_addons_list_addons_flags) -f $(this_file) list-pkgs-addons | while read -r pkg; do \
87+
$(QUIET) $(MAKE) LIST_PKGS_ADDONS_FLAGS=$(install_node_addons_list_addons_flags) -f $(this_file) list-pkgs-addons | while read -r pkg; do \
8888
if echo "$$pkg" | grep -v '^\/.*\|^[a-zA-Z]:.*' >/dev/null; then \
8989
continue; \
9090
fi; \

0 commit comments

Comments
 (0)