[vlc-commits] contrib: dvdnav: fix dependency on .dvdread
Alexandre Janniaux
git at videolan.org
Sun Jul 28 08:36:06 CEST 2019
vlc | branch: master | Alexandre Janniaux <ajanni at videolabs.io> | Thu Jul 25 13:16:07 2019 +0200| [0381b1fd7a28a857ee062ecd74ef30f2d3652387] | committer: Jean-Baptiste Kempf
contrib: dvdnav: fix dependency on .dvdread
This dependency must be setup by the dependency propagation at
the end of the main.mak makefile. It will correctly propapage the dvdcss
dependency which is dvdread's one and not dvdnav's one.
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=0381b1fd7a28a857ee062ecd74ef30f2d3652387
---
contrib/src/dvdnav/rules.mak | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/contrib/src/dvdnav/rules.mak b/contrib/src/dvdnav/rules.mak
index 92c3ccc577..334ccfb198 100644
--- a/contrib/src/dvdnav/rules.mak
+++ b/contrib/src/dvdnav/rules.mak
@@ -24,9 +24,9 @@ dvdnav: libdvdnav-$(LIBDVDNAV_VERSION).tar.bz2 .sum-dvdnav
cd $(UNPACK_DIR) && sed -i -e 's,Requires.private,Requires,g' misc/*.pc.in
$(MOVE)
-DEPS_dvdnav = dvdcss dvdread
+DEPS_dvdnav = dvdread $(DEPS_dvdread)
-.dvdnav: dvdnav .dvdcss .dvdread
+.dvdnav: dvdnav
$(REQUIRE_GPL)
$(RECONF) -I m4
cd $< && $(HOSTVARS) ./configure $(HOSTCONF) --disable-examples
More information about the vlc-commits
mailing list