From: Christophe Gisquet Date: Sun, 9 Feb 2014 23:23:28 +0000 (+0100) Subject: build: fix examples compilation when EXESUF is not empty X-Git-Tag: android-x86-6.0-r1~10^2~2208 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=682b2a809b446c4ca45f88a84c1d92ccfcbcfbd1;p=android-x86%2Fexternal-ffmpeg.git build: fix examples compilation when EXESUF is not empty Due to a wrong substitution doc/examples is not added as a prerequisite for the objects of the example programs. This results in compiler error due to the non-existing output directory. Bug-Id: 636 Signed-off-by: Janne Grunau --- diff --git a/doc/Makefile b/doc/Makefile index 4228c54017..e92e72f35a 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -54,7 +54,7 @@ doc/%.1: doc/%.pod $(GENTEXI) $(M)pod2man --section=1 --center=" " --release=" " $< > $@ $(DOCS) doc/doxy/html: | doc/ -$(DOC_EXAMPLES:%=%.o): | doc/examples +$(DOC_EXAMPLES:%$(EXESUF)=%.o): | doc/examples OBJDIRS += doc/examples DOXY_TEMPLATES = doxy_stylesheet.css footer.html header.html