summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2017-09-29 16:13:51 -0300
committerJames Almer <jamrial@gmail.com>2017-09-29 16:13:51 -0300
commit72da8491ca055f0211f64b160a8e16b9fb179457 (patch)
tree3b6260c4a61c1c3b8883467c5a3eb0958720bd8e /Makefile
parentb25d6290c67e193b91becab12e6c88df134cee81 (diff)
downloadffmpeg-72da8491ca055f0211f64b160a8e16b9fb179457.tar.gz
build: don't call install with the -T option
It's not available on macOS. Should fix a regression instroduced by b25d6290c67e193b91becab12e6c88df134cee81. Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 43ce03130a..2c7b0d54f1 100644
--- a/Makefile
+++ b/Makefile
@@ -172,7 +172,7 @@ install-data: $(DATA_FILES) $(EXAMPLES_FILES) $(EXAMPLE_MAKEFILE)
$(Q)mkdir -p "$(DATADIR)/examples"
$(INSTALL) -m 644 $(DATA_FILES) "$(DATADIR)"
$(INSTALL) -m 644 $(EXAMPLES_FILES) "$(DATADIR)/examples"
- $(INSTALL) -m 644 -T $(EXAMPLE_MAKEFILE:%=%.example) "$(DATADIR)/examples/Makefile"
+ $(INSTALL) -m 644 $(EXAMPLE_MAKEFILE:%=%.example) "$(DATADIR)/examples/Makefile"
uninstall: uninstall-libs uninstall-headers uninstall-progs uninstall-data