@@ -387,7 +387,7 @@ manpages: build-coreutils
387387
388388install-manpages : manpages
389389 mkdir -p $(DESTDIR )$(DATAROOTDIR ) /man/man1
390- $(foreach prog, $(filter-out coreutils, $( INSTALLEES ) ) , \
390+ $(foreach prog, $(INSTALLEES ) , \
391391 $(INSTALL ) -m 644 $(BUILDDIR ) /man/$(PROG_PREFIX )$(prog ) .1 $(DESTDIR )$(DATAROOTDIR ) /man/man1/ $(newline ) \
392392 )
393393else
@@ -397,7 +397,7 @@ endif
397397ifeq ($(COMPLETIONS ) ,y)
398398completions : build-coreutils
399399 mkdir -p $(BUILDDIR ) /completions/zsh $(BUILDDIR ) /completions/bash $(BUILDDIR ) /completions/fish
400- $(foreach prog, $(filter-out coreutils, $( INSTALLEES ) ) , \
400+ $(foreach prog, $(INSTALLEES ) , \
401401 $(BUILDDIR ) /coreutils completion $(prog ) zsh > $(BUILDDIR ) /completions/zsh/_$(PROG_PREFIX )$(prog ) $(newline ) \
402402 $(BUILDDIR ) /coreutils completion $(prog ) bash > $(BUILDDIR ) /completions/bash/$(PROG_PREFIX )$(prog ) $(newline ) \
403403 $(BUILDDIR ) /coreutils completion $(prog ) fish > $(BUILDDIR ) /completions/fish/$(PROG_PREFIX )$(prog ) .fish $(newline ) \
@@ -407,7 +407,7 @@ install-completions: completions
407407 mkdir -p $(DESTDIR )$(DATAROOTDIR ) /zsh/site-functions
408408 mkdir -p $(DESTDIR )$(DATAROOTDIR ) /bash-completion/completions
409409 mkdir -p $(DESTDIR )$(DATAROOTDIR ) /fish/vendor_completions.d
410- $(foreach prog, $(filter-out coreutils, $( INSTALLEES ) ) , \
410+ $(foreach prog, $(INSTALLEES ) , \
411411 $(INSTALL ) -m 644 $(BUILDDIR ) /completions/zsh/_$(PROG_PREFIX )$(prog ) $(DESTDIR )$(DATAROOTDIR ) /zsh/site-functions/ $(newline ) \
412412 $(INSTALL ) -m 644 $(BUILDDIR ) /completions/bash/$(PROG_PREFIX )$(prog ) $(DESTDIR )$(DATAROOTDIR ) /bash-completion/completions/ $(newline ) \
413413 $(INSTALL ) -m 644 $(BUILDDIR ) /completions/fish/$(PROG_PREFIX )$(prog ) .fish $(DESTDIR )$(DATAROOTDIR ) /fish/vendor_completions.d/ $(newline ) \
@@ -461,7 +461,7 @@ ifneq ($(OS),Windows_NT)
461461endif
462462ifeq (${MULTICALL}, y)
463463 $(INSTALL) -m 755 $(BUILDDIR)/coreutils $(INSTALLDIR_BIN)/$(PROG_PREFIX)coreutils
464- $(foreach prog, $(filter-out coreutils, $( INSTALLEES) ), \
464+ $(foreach prog, $(INSTALLEES), \
465465 cd $(INSTALLDIR_BIN) && ln -fs $(PROG_PREFIX)coreutils $(PROG_PREFIX)$(prog) $(newline) \
466466 )
467467 $(if $(findstring test,$(INSTALLEES)), cd $(INSTALLDIR_BIN) && ln -fs $(PROG_PREFIX)coreutils $(PROG_PREFIX)[)
0 commit comments