# HG changeset patch # User diego # Date 1240198784 0 # Node ID e5e1ecf7a17266020275c1125665934edf7bd9fe # Parent aaff2410e8a8daf86ff56d7e1f96bfa4c9c3c8b2 Only add existing files to the FFMPEGFILES variable. based on a patch by Carl F«ärstenberg, azatoth gmail com diff -r aaff2410e8a8 -r e5e1ecf7a172 Makefile --- a/Makefile Mon Apr 20 00:19:39 2009 +0000 +++ b/Makefile Mon Apr 20 03:39:44 2009 +0000 @@ -795,7 +795,7 @@ libswscale \ FFMPEGLIBS = $(foreach part, $(FFMPEGPARTS), $(part)/$(part).a) -FFMPEGFILES = $(foreach part, $(FFMPEGPARTS), $(part)/*.[chS] $(part)/*/*.[chS]) +FFMPEGFILES = $(foreach part, $(FFMPEGPARTS), $(wildcard $(part)/*.[chS] $(part)/*/*.[chS]))