From 35417dcd65a57321fbadf98c9a4cff1cb741db4b Mon Sep 17 00:00:00 2001 From: Henrik Gramner Date: Tue, 26 Jan 2021 02:21:16 +0100 Subject: [PATCH] Makefile: Drop the -T argument to install It's not required, and BSD doesn't support it. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6b2cfad7..7c6022ff 100644 --- a/Makefile +++ b/Makefile @@ -414,7 +414,7 @@ endif install-bashcompletion: ifneq ($(BASHCOMPLETIONSDIR),) $(INSTALL) -d $(DESTDIR)$(BASHCOMPLETIONSDIR) - $(INSTALL) -m 644 -T $(SRCPATH)/tools/bash-autocomplete.sh $(DESTDIR)$(BASHCOMPLETIONSDIR)/x264 + $(INSTALL) -m 644 $(SRCPATH)/tools/bash-autocomplete.sh $(DESTDIR)$(BASHCOMPLETIONSDIR)/x264 endif uninstall: -- 2.40.0