Message ID | 20240305051328.806892-4-kuba@kernel.org (mailing list archive) |
---|---|
State | Accepted |
Commit | 72fa191bfdf611e5362e71d4cacae26c4c8d302c |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | tools: ynl: clean up make clean | expand |
Jakub Kicinski <kuba@kernel.org> writes: > 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>
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
Build process uses python to generate the user space code. Remove __pycache__ on make clean. Signed-off-by: Jakub Kicinski <kuba@kernel.org> --- tools/net/ynl/lib/Makefile | 1 + 1 file changed, 1 insertion(+)