[FFmpeg-cvslog] build: don't call install with the -T option

James Almer git at videolan.org
Fri Sep 29 22:14:34 EEST 2017


ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Fri Sep 29 16:13:51 2017 -0300| [72da8491ca055f0211f64b160a8e16b9fb179457] | committer: James Almer

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 at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=72da8491ca055f0211f64b160a8e16b9fb179457
---

 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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
 



More information about the ffmpeg-cvslog mailing list