We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcd6d80 commit 57de072Copy full SHA for 57de072
tools/make/lib/ls/pkgs/lib.mk
@@ -74,9 +74,9 @@ list-lib-pkgs:
74
#/
75
list-random-lib-pkgs:
76
$(QUIET) if command -v shuf > /dev/null; then \
77
- $(MAKE) list-lib-pkgs | shuf -n $(RANDOM_SELECTION_SIZE) ; \
+ $(MAKE) -f $(this_file) list-lib-pkgs | shuf -n $(RANDOM_SELECTION_SIZE) ; \
78
else \
79
- $(MAKE) list-lib-pkgs | sort -R | head -n $(RANDOM_SELECTION_SIZE) ; \
+ $(MAKE) -f $(this_file) list-lib-pkgs | sort -R | head -n $(RANDOM_SELECTION_SIZE) ; \
80
fi
81
82
.PHONY: list-random-lib-pkgs
0 commit comments