We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73f8d0a commit 37db51bCopy full SHA for 37db51b
template/Makefile.in
@@ -569,10 +569,10 @@ ext/distclean ext/realclean .bundle/distclean .bundle/realclean::
569
@$(RMALL) $(tooldir)/bunlder/*.lock $(srcdir)/.bundle
570
571
gc/clean gc/distclean gc/realclean::
572
- - 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)
573
574
gc/distclean gc/realclean::
575
- - for gc in gc/*/; do $(RMDIR) $$gc; done || $(NULLCMD)
+ - $(CHDIR) gc 2> /dev/null && for gc in */; do $(RMDIR) $$gc; done || $(NULLCMD)
576
577
clean-enc distclean-enc realclean-enc:
578
@test -f "$(ENC_MK)" || exit 0; \
0 commit comments