]> git.sesse.net Git - vlc/commitdiff
[Contribs] Small FFMPEGCONF cleanup.
authorJean-Baptiste Kempf <jb@videolan.org>
Wed, 15 Oct 2008 23:57:03 +0000 (01:57 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Wed, 15 Oct 2008 23:57:03 +0000 (01:57 +0200)
extras/contrib/src/Makefile

index a85350ec696499cc486b4e576ffe37571a295e9c..89aff9d6e1f4efe692dd011be0b400b3e342d959 100644 (file)
@@ -84,14 +84,9 @@ else
 HOSTCC2=$(HOSTCC)
 endif
 
-# For ffmpeg if not cross compiling
-ifneq ($(CC),)
-  FFMPEGCONF=--cc="$(CC)"
-endif
+FFMPEGCONF=
 
-#
 # cross compiling
-#
 #This should be inside the if block but some config scripts are buggy
 HOSTCONF=--target=$(HOST) --host=$(HOST) --build=$(BUILD) --program-prefix=""
 ifneq ($(BUILD),$(HOST))
@@ -101,7 +96,7 @@ ifneq ($(BUILD),$(HOST))
     #
     ifndef HAVE_CYGWIN
         # We are REALLY cross compiling
-        FFMPEGCONF=--cross-prefix=$(HOST)- --enable-cross-compile
+        FFMPEGCONF+=--cross-prefix=$(HOST)- --enable-cross-compile
         X264CONF=--host=$(HOST)
         PTHREADSCONF="CROSS=$(HOST)-"
     else