summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-04-20 03:39:44 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-04-20 03:39:44 +0000
commita12ecf35b2ca7856b4d5fcc284d5fb10a2011072 (patch)
treef6e08abf1a610d22c2b3a5044197c040d482d3ff /Makefile
parent2ff2081e06153508b525f05009b23fa13750e627 (diff)
downloadmpv-a12ecf35b2ca7856b4d5fcc284d5fb10a2011072.tar.bz2
mpv-a12ecf35b2ca7856b4d5fcc284d5fb10a2011072.tar.xz
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
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b0bae1c54d..686aef434b 100644
--- a/Makefile
+++ b/Makefile
@@ -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]))