Skip to content

Commit 2319a99

Browse files
authored
Merge pull request #10634 from oech3/patch-5
GNUmakefile: Drop HASHSUM
2 parents 61da637 + 4e662bf commit 2319a99

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

GNUmakefile

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ build-uudoc:
220220

221221
install-manpages: build-uudoc
222222
mkdir -p $(DESTDIR)$(DATAROOTDIR)/man/man1
223-
$(foreach prog, $(INSTALLEES) $(HASHSUM_PROGS), \
223+
$(foreach prog, $(INSTALLEES), \
224224
$(BUILDDIR_UUDOC)/uudoc manpage $(prog) > $(DESTDIR)$(DATAROOTDIR)/man/man1/$(PROG_PREFIX)$(prog).1 $(newline) \
225225
)
226226
else
@@ -233,7 +233,7 @@ install-completions: build-uudoc
233233
mkdir -p $(DESTDIR)$(DATAROOTDIR)/zsh/site-functions
234234
mkdir -p $(DESTDIR)$(DATAROOTDIR)/bash-completion/completions
235235
mkdir -p $(DESTDIR)$(DATAROOTDIR)/fish/vendor_completions.d
236-
$(foreach prog, $(INSTALLEES) $(HASHSUM_PROGS) , \
236+
$(foreach prog, $(INSTALLEES), \
237237
$(BUILDDIR_UUDOC)/uudoc completion $(prog) zsh > $(DESTDIR)$(DATAROOTDIR)/zsh/site-functions/_$(PROG_PREFIX)$(prog) $(newline) \
238238
$(BUILDDIR_UUDOC)/uudoc completion $(prog) bash > $(DESTDIR)$(DATAROOTDIR)/bash-completion/completions/$(PROG_PREFIX)$(prog).bash $(newline) \
239239
$(BUILDDIR_UUDOC)/uudoc completion $(prog) fish > $(DESTDIR)$(DATAROOTDIR)/fish/vendor_completions.d/$(PROG_PREFIX)$(prog).fish $(newline) \
@@ -295,9 +295,6 @@ ifeq (${MULTICALL}, y)
295295
$(foreach prog, $(filter-out coreutils, $(INSTALLEES)), \
296296
cd $(INSTALLDIR_BIN) && $(LN) $(PROG_PREFIX)coreutils $(PROG_PREFIX)$(prog) $(newline) \
297297
)
298-
$(foreach prog, $(HASHSUM_PROGS), \
299-
cd $(INSTALLDIR_BIN) && $(LN) $(PROG_PREFIX)coreutils $(PROG_PREFIX)$(prog) $(newline) \
300-
)
301298
$(if $(findstring test,$(INSTALLEES)), cd $(INSTALLDIR_BIN) && $(LN) $(PROG_PREFIX)coreutils $(PROG_PREFIX)[)
302299
else
303300
$(foreach prog, $(INSTALLEES), \

0 commit comments

Comments
 (0)