Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

selftests: net: move EXTRA_CLEAN of libynl.a into ynl.mk

Commit 1fd9e4f25782 ("selftests: make kselftest-clean remove libynl outputs")
added EXTRA_CLEAN of YNL generated files to ynl.mk. We already had
a EXTRA_CLEAN in the file including the snippet. Consolidate them.

Acked-by: Stanislav Fomichev <sdf@fomichev.me>
Link: https://patch.msgid.link/20241011230311.2529760-2-kuba@kernel.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

+2 -2
-1
tools/testing/selftests/net/Makefile
··· 98 98 TEST_PROGS += bpf_offload.py 99 99 100 100 # YNL files, must be before "include ..lib.mk" 101 - EXTRA_CLEAN += $(OUTPUT)/libynl.a 102 101 YNL_GEN_FILES := ncdevmem 103 102 TEST_GEN_FILES += $(YNL_GEN_FILES) 104 103
+2 -1
tools/testing/selftests/net/ynl.mk
··· 33 33 EXTRA_CLEAN += \ 34 34 $(top_srcdir)/tools/net/ynl/lib/__pycache__ \ 35 35 $(top_srcdir)/tools/net/ynl/lib/*.[ado] \ 36 - $(OUTPUT)/.libynl-*.sig 36 + $(OUTPUT)/.libynl-*.sig \ 37 + $(OUTPUT)/libynl.a