summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Kicinski <kuba@kernel.org>2024-03-05 08:13:28 +0300
committerDavid S. Miller <davem@davemloft.net>2024-03-06 15:05:10 +0300
commit72fa191bfdf611e5362e71d4cacae26c4c8d302c (patch)
tree9cb50763b559b323a5f68f501fe365c986e27a01
parent1d8617b2a610f36e361a91846725c065dc233541 (diff)
downloadlinux-72fa191bfdf611e5362e71d4cacae26c4c8d302c.tar.xz
tools: ynl: remove __pycache__ during clean
Build process uses python to generate the user space code. Remove __pycache__ on make clean. Signed-off-by: Jakub Kicinski <kuba@kernel.org> Reviewed-by: Donald Hunter <donald.hunter@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--tools/net/ynl/lib/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/net/ynl/lib/Makefile b/tools/net/ynl/lib/Makefile
index 1507833d05c5..dfff3ecd1cba 100644
--- a/tools/net/ynl/lib/Makefile
+++ b/tools/net/ynl/lib/Makefile
@@ -17,6 +17,7 @@ ynl.a: $(OBJS)
ar rcs $@ $(OBJS)
clean:
rm -f *.o *.d *~
+ rm -rf __pycache__
distclean: clean
rm -f *.a