[vlc-devel] [PATCH 1/2] contrib: dvdnav: fix dependency on .dvdread
Alexandre Janniaux
ajanni at videolabs.io
Thu Jul 25 13:16:07 CEST 2019
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.
---
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
--
2.22.0
More information about the vlc-devel
mailing list