Skip to content
Snippets Groups Projects
Commit 35417dcd authored by Henrik Gramner's avatar Henrik Gramner
Browse files

Makefile: Drop the -T argument to install

It's not required, and BSD doesn't support it.
parent 544c61f0
No related branches found
No related tags found
1 merge request!52Makefile: Drop the -T argument to install
Pipeline #61507 passed with stages
in 4 minutes and 17 seconds
......@@ -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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment