[vlc-commits] commit: Fix contrib dependencies ( Rafaël Carré )

git at videolan.org git at videolan.org
Tue Nov 9 14:41:53 CET 2010


vlc | branch: master | Rafaël Carré <rafael.carre at gmail.com> | Tue Nov  9 14:41:05 2010 +0100| [2fd5851af0a40671d0a7cdec1ce94538438351a0] | committer: Rafaël Carré 

Fix contrib dependencies

X=1 #comment
Y-$(X)=1

=> $(Y-1) is not set

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

 extras/contrib/src/contrib-src.mak |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/extras/contrib/src/contrib-src.mak b/extras/contrib/src/contrib-src.mak
index 71318e7..176df23 100644
--- a/extras/contrib/src/contrib-src.mak
+++ b/extras/contrib/src/contrib-src.mak
@@ -90,7 +90,8 @@ else
 HOSTCC2=$(HOSTCC)
 endif
 
-ENABLED=1 # Just a shortcut for readability
+# Just a shortcut for readability
+ENABLED=1
 
 # cross compiling
 #This should be inside the if block but some config scripts are buggy



More information about the vlc-commits mailing list