[vlc-commits] core: call fourcc_gen with the file extension it was created with
    Steve Lhomme 
    git at videolan.org
       
    Fri Jul  7 19:05:54 CEST 2017
    
    
  
vlc | branch: master | Steve Lhomme <robux4 at videolabs.io> | Tue Jul  4 17:50:57 2017 +0200| [76fd5c84d99b7b4f86c80db18931a539ee294675] | committer: Rémi Denis-Courmont
core: call fourcc_gen with the file extension it was created with
Helps compile with Windows Subsystem for Linux
Signed-off-by: Rémi Denis-Courmont <remi at remlab.net>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=76fd5c84d99b7b4f86c80db18931a539ee294675
---
 src/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Makefile.am b/src/Makefile.am
index c93a4021ee..6b661a655d 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -494,7 +494,7 @@ fourcc_gen$(BUILDEXEEXT): misc/fourcc_gen.c misc/fourcc_list.h ../include/vlc_fo
 
 fourcc_tables.h: fourcc_gen$(BUILDEXEEXT)
 	$(AM_V_at)rm -f -- $@.tmp
-	$(AM_V_GEN)$(builddir)/fourcc_gen > $@.tmp
+	$(AM_V_GEN)$(builddir)/fourcc_gen$(BUILDEXEEXT) > $@.tmp
 	$(AM_V_at)mv -f -- $@.tmp $@
 
 # Unit/regression tests
    
    
More information about the vlc-commits
mailing list