Skip to content

Commit

Permalink
Ingore errors when removing intermediate files recursively [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
nobu committed Mar 7, 2024
1 parent 810779f commit d1c6645
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion template/Makefile.in
Expand Up @@ -491,7 +491,7 @@ clean-local::
enc/encinit.c enc/encinit.$(OBJEXT) $(pkgconfig_DATA) \
ruby-runner.$(OBJEXT) ruby-runner.h \
|| $(NULLCMD)
$(Q)find . \( -name '*.bc' -o -name '*.[is]' \) -delete
$(Q)find . -depth \( -name '*.bc' -o -name '*.[is]' \) -delete 2> /dev/null || true
-$(Q)$(RMALL) exe/ *.dSYM

distclean-local::
Expand Down

0 comments on commit d1c6645

Please sign in to comment.