Suppress error message when gc is cleaned already [ci skip]

This commit is contained in:
Nobuyoshi Nakada 2025-04-28 19:55:26 +09:00
parent 73f8d0a9c8
commit 37db51b441
No known key found for this signature in database
GPG Key ID: 3582D74E1FEE4465

View File

@ -569,10 +569,10 @@ ext/distclean ext/realclean .bundle/distclean .bundle/realclean::
@$(RMALL) $(tooldir)/bunlder/*.lock $(srcdir)/.bundle
gc/clean gc/distclean gc/realclean::
- for gc in gc/*/; do ($(CHDIR) $$gc && exec $(MAKE) TARGET_SO_DIR=./ $(@F)); done || $(NULLCMD)
- $(CHDIR) gc 2> /dev/null && for gc in */; do ($(CHDIR) $$gc && exec $(MAKE) TARGET_SO_DIR=./ $(@F)); done || $(NULLCMD)
gc/distclean gc/realclean::
- for gc in gc/*/; do $(RMDIR) $$gc; done || $(NULLCMD)
- $(CHDIR) gc 2> /dev/null && for gc in */; do $(RMDIR) $$gc; done || $(NULLCMD)
clean-enc distclean-enc realclean-enc:
@test -f "$(ENC_MK)" || exit 0; \