[vlc-commits] contrib: protobuf: Simplify minimum version check

Hugo Beauzée-Luyssen git at videolan.org
Wed Mar 14 10:25:10 CET 2018


vlc | branch: master | Hugo Beauzée-Luyssen <hugo at beauzee.fr> | Wed Mar 14 10:24:44 2018 +0100| [b5ae585c6e288532631cdc930e782f1039d8c455] | committer: Hugo Beauzée-Luyssen

contrib: protobuf: Simplify minimum version check

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=b5ae585c6e288532631cdc930e782f1039d8c455
---

 contrib/src/protobuf/rules.mak | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/contrib/src/protobuf/rules.mak b/contrib/src/protobuf/rules.mak
index 3f9e5421c7..4227f049a8 100644
--- a/contrib/src/protobuf/rules.mak
+++ b/contrib/src/protobuf/rules.mak
@@ -3,7 +3,7 @@ PROTOBUF_VERSION := 3.1.0
 PROTOBUF_URL := https://github.com/google/protobuf/releases/download/v$(PROTOBUF_VERSION)/protobuf-cpp-$(PROTOBUF_VERSION).tar.gz
 
 PKGS += protobuf
-ifeq ($(call need_pkg,"protobuf", 3.1.0),)
+ifeq ($(call need_pkg, "protobuf >= 3.1.0"),)
 PKGS_FOUND += protobuf
 endif
 



More information about the vlc-commits mailing list