From 8d61b04dd687bc96f2a1c571fd043ea547ee8459 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Tue, 18 Feb 2025 11:57:07 +0000 Subject: [PATCH] ruby: Make sure all object files are cleaned up There were several, large *.o files left over after 'make clean': $ ls ruby/ext/guestfs/ actions-0.c actions-2.c actions-4.c actions-6.c handle.c actions-0.o actions-2.o actions-4.o actions-6.o handle.o actions-1.c actions-3.c actions-5.c actions.h module.c actions-1.o actions-3.o actions-5.o extconf.rb.in module.o --- ruby/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ruby/Makefile.am b/ruby/Makefile.am index 867b05b1d..cccb21826 100644 --- a/ruby/Makefile.am +++ b/ruby/Makefile.am @@ -47,8 +47,8 @@ CLEANFILES += \ t/*~ \ ext/guestfs/*~ \ ext/guestfs/extconf.h \ - ext/guestfs/_guestfs.o \ - ext/guestfs/_guestfs.$(DLEXT) \ + ext/guestfs/*.o \ + ext/guestfs/*.$(DLEXT) \ ext/guestfs/mkmf.log \ ext/guestfs/Makefile