This is an automatic generated email to let you know that the following patch 
were queued at the 
http://git.linuxtv.org/cgit.cgi/media_tree.git tree:

Subject: [media] DocBook/media/Makefile: Avoid make htmldocs to fail
Author:  Mauro Carvalho Chehab <[email protected]>
Date:    Sat Aug 22 05:02:21 2015 -0300

If make is called twice like that:
        make V=1 DOCBOOKS=device-drivers.xml htmldocs

Make will fail with:

        make -f ./scripts/Makefile.build obj=scripts/basic
        rm -f .tmp_quiet_recordmcount
        make -f ./scripts/Makefile.build obj=scripts build_docproc
        make -f ./scripts/Makefile.build obj=Documentation/DocBook htmldocs
        rm -rf Documentation/DocBook/index.html; echo '<h1>Linux Kernel HTML 
Documentation</h1>' >> Documentation/DocBook/index.html && echo '<h2>Kernel 
Version: 4.2.0-rc2</h2>' >> Documentation/DocBook/index.html && cat 
Documentation/DocBook/device-drivers.html >> Documentation/DocBook/index.html
        cp ./Documentation/DocBook//bayer.png 
./Documentation/DocBook//constraints.png ./Documentation/DocBook//crop.gif 
./Documentation/DocBook//dvbstb.png ./Documentation/DocBook//fieldseq_bt.gif 
./Documentation/DocBook//fieldseq_tb.gif ./Documentation/DocBook//nv12mt.gif 
./Documentation/DocBook//nv12mt_example.gif 
./Documentation/DocBook//pipeline.png ./Documentation/DocBook//selection.png 
./Documentation/DocBook//vbi_525.gif ./Documentation/DocBook//vbi_625.gif 
./Documentation/DocBook//vbi_hsync.gif ./Documentation/DocBook/media/*.svg 
./Documentation/DocBook/media/v4l/*.svg ./Documentation/DocBook//media_api
        cp: target './Documentation/DocBook//media_api' is not a directory
        Documentation/DocBook/Makefile:53: recipe for target 'htmldocs' failed

Signed-off-by: Mauro Carvalho Chehab <[email protected]>
Acked-by: Jonathan Corbet <[email protected]>

 Documentation/DocBook/media/Makefile |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

---

http://git.linuxtv.org/cgit.cgi/media_tree.git/commit/?id=5240f4e68d4209588194ea1db60f7c822e2a1c6f

diff --git a/Documentation/DocBook/media/Makefile 
b/Documentation/DocBook/media/Makefile
index 23996f8..08527e7 100644
--- a/Documentation/DocBook/media/Makefile
+++ b/Documentation/DocBook/media/Makefile
@@ -199,7 +199,8 @@ DVB_DOCUMENTED = \
 #
 
 install_media_images = \
-       $(Q)-cp $(OBJIMGFILES) $(MEDIA_SRC_DIR)/*.svg 
$(MEDIA_SRC_DIR)/v4l/*.svg $(MEDIA_OBJ_DIR)/media_api
+       $(Q)-mkdir $(MEDIA_OBJ_DIR)/media_api; \
+       cp $(OBJIMGFILES) $(MEDIA_SRC_DIR)/*.svg $(MEDIA_SRC_DIR)/v4l/*.svg 
$(MEDIA_OBJ_DIR)/media_api
 
 $(MEDIA_OBJ_DIR)/%: $(MEDIA_SRC_DIR)/%.b64
        $(Q)base64 -d $< >$@

_______________________________________________
linuxtv-commits mailing list
[email protected]
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits

Reply via email to