From: Gaetan Nadon Date: Sun, 24 Nov 2013 13:02:29 +0000 (-0500) Subject: doxygen: fix error msg: 'find: `html': No such file or directory' X-Git-Tag: libevdev-0.6~17 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ebb70f42dc563896a897e4a2265c9628468f668d;p=platform%2Fupstream%2Flibevdev.git doxygen: fix error msg: 'find: `html': No such file or directory' Every time a make target is run in the doc directory when the html dir is absent, you get this error. Even with 'make clean'. Signed-off-by: Gaetan Nadon Signed-off-by: Peter Hutterer --- diff --git a/doc/Makefile.am b/doc/Makefile.am index be6e622..ecc2c61 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -9,7 +9,7 @@ clean-local: .PHONY: doxygen -doc_src= $(shell find html -type f -printf "html/%P\n") +doc_src= $(shell find html -type f -printf "html/%P\n" 2>/dev/null) EXTRA_DIST = $(doc_src) libevdev.css endif