Only add existing files to the FFMPEGFILES variable.

based on a patch by Carl Fürstenberg, azatoth gmail com


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29204 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2009-04-20 03:39:44 +00:00
parent 2ff2081e06
commit a12ecf35b2
1 changed files with 1 additions and 1 deletions

View File

@ -795,7 +795,7 @@ FFMPEGPARTS = libavcodec \
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]))