diff options
author | Shuah Khan <shuahkh@osg.samsung.com> | 2017-04-22 01:12:22 +0300 |
---|---|---|
committer | Shuah Khan <shuahkh@osg.samsung.com> | 2017-04-25 18:47:21 +0300 |
commit | b1c0f540c8e6944a8cae1bcbab60068fb7b40734 (patch) | |
tree | 1c2c300060c8144b895811c8516cd34643107710 | |
parent | df6438f9a726c8f803e03708c83928e439fd5e2f (diff) | |
download | linux-b1c0f540c8e6944a8cae1bcbab60068fb7b40734.tar.xz |
selftests: futex: override clean in lib.mk to fix warnings
Add override for lib.mk clean to fix the following warnings from clean
target run.
Makefile:36: warning: overriding recipe for target 'clean'
../lib.mk:55: warning: ignoring old recipe for target 'clean'
Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
-rw-r--r-- | tools/testing/selftests/futex/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/testing/selftests/futex/Makefile b/tools/testing/selftests/futex/Makefile index c8095e628e13..e2fbb890aef9 100644 --- a/tools/testing/selftests/futex/Makefile +++ b/tools/testing/selftests/futex/Makefile @@ -32,9 +32,10 @@ override define EMIT_TESTS echo "./run.sh" endef -clean: +override define CLEAN for DIR in $(SUBDIRS); do \ BUILD_TARGET=$(OUTPUT)/$$DIR; \ mkdir $$BUILD_TARGET -p; \ make OUTPUT=$$BUILD_TARGET -C $$DIR $@;\ done +endef |