aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing
diff options
context:
space:
mode:
authorShuah Khan <shuahkh@osg.samsung.com>2017-04-21 16:25:25 -0600
committerShuah Khan <shuahkh@osg.samsung.com>2017-04-27 08:05:14 -0600
commit8ab02e0962bf91126797fefb9775dd1ffa54d29d (patch)
tree17f79163a168629391819f8a42b3f4d93fad4ead /tools/testing
parentselftests: splice: override clean in lib.mk to fix warnings (diff)
downloadlinux-dev-8ab02e0962bf91126797fefb9775dd1ffa54d29d.tar.xz
linux-dev-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/testing')
-rw-r--r--tools/testing/selftests/sync/Makefile3
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)