diff options
author | Shuah Khan <shuahkh@osg.samsung.com> | 2017-04-21 16:25:25 -0600 |
---|---|---|
committer | Shuah Khan <shuahkh@osg.samsung.com> | 2017-04-27 08:05:14 -0600 |
commit | 8ab02e0962bf91126797fefb9775dd1ffa54d29d (patch) | |
tree | 17f79163a168629391819f8a42b3f4d93fad4ead /tools | |
parent | de0c6742ffd89b48970fefc8ccf9f5ac43ba17c6 (diff) | |
download | linux-8ab02e0962bf91126797fefb9775dd1ffa54d29d.tar.gz linux-8ab02e0962bf91126797fefb9775dd1ffa54d29d.tar.bz2 linux-8ab02e0962bf91126797fefb9775dd1ffa54d29d.zip |
selftests: sync: override clean in lib.mk to fix warnings
Add override with EXTRA_CLEAN for lib.mk clean to fix the following
warnings from clean target run.
Makefile:24: 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>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/testing/selftests/sync/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/testing/selftests/sync/Makefile b/tools/testing/selftests/sync/Makefile index 87ac400507c0..4981c6b6d050 100644 --- a/tools/testing/selftests/sync/Makefile +++ b/tools/testing/selftests/sync/Makefile @@ -20,5 +20,4 @@ TESTS += sync_stress_merge.o sync_test: $(OBJS) $(TESTS) -clean: - $(RM) sync_test $(OBJS) $(TESTS) +EXTRA_CLEAN := sync_test $(OBJS) $(TESTS) |