mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 10:00:17 +00:00
selftests: futex: Use variable MAKE instead of make
commitb9199181a9upstream. Recursive make commands should always use the variable MAKE, not the explicit command name ‘make’. This has benefits and removes the following warning when multiple jobs are used for the build: make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. Fixes:a8ba798bc8("selftests: enable O and KBUILD_OUTPUT") Signed-off-by: Muhammad Usama Anjum <usama.anjum@collabora.com> Reviewed-by: André Almeida <andrealmeid@collabora.com> Signed-off-by: Shuah Khan <skhan@linuxfoundation.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
8f0fff8b59
commit
1536fafa23
@@ -11,7 +11,7 @@ all:
|
|||||||
@for DIR in $(SUBDIRS); do \
|
@for DIR in $(SUBDIRS); do \
|
||||||
BUILD_TARGET=$(OUTPUT)/$$DIR; \
|
BUILD_TARGET=$(OUTPUT)/$$DIR; \
|
||||||
mkdir $$BUILD_TARGET -p; \
|
mkdir $$BUILD_TARGET -p; \
|
||||||
make OUTPUT=$$BUILD_TARGET -C $$DIR $@;\
|
$(MAKE) OUTPUT=$$BUILD_TARGET -C $$DIR $@;\
|
||||||
if [ -e $$DIR/$(TEST_PROGS) ]; then \
|
if [ -e $$DIR/$(TEST_PROGS) ]; then \
|
||||||
rsync -a $$DIR/$(TEST_PROGS) $$BUILD_TARGET/; \
|
rsync -a $$DIR/$(TEST_PROGS) $$BUILD_TARGET/; \
|
||||||
fi \
|
fi \
|
||||||
@@ -32,6 +32,6 @@ override define CLEAN
|
|||||||
@for DIR in $(SUBDIRS); do \
|
@for DIR in $(SUBDIRS); do \
|
||||||
BUILD_TARGET=$(OUTPUT)/$$DIR; \
|
BUILD_TARGET=$(OUTPUT)/$$DIR; \
|
||||||
mkdir $$BUILD_TARGET -p; \
|
mkdir $$BUILD_TARGET -p; \
|
||||||
make OUTPUT=$$BUILD_TARGET -C $$DIR $@;\
|
$(MAKE) OUTPUT=$$BUILD_TARGET -C $$DIR $@;\
|
||||||
done
|
done
|
||||||
endef
|
endef
|
||||||
|
|||||||
Reference in New Issue
Block a user