diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2013-11-24 08:02:29 -0500 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2013-11-25 10:24:45 +1000 |
commit | ebb70f42dc563896a897e4a2265c9628468f668d (patch) | |
tree | d7072aa031bd610e95a2799c15680a754e1169ab /doc | |
parent | 83d679f1a13c0781e69f6d2248f6313ea4766ff9 (diff) |
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 <memsize@videotron.ca>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
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 |