From: Gaetan Nadon Date: Sun, 24 Nov 2013 13:02:26 +0000 (-0500) Subject: doxygen: invocation of doxygen fails due to hard coded path X-Git-Tag: libevdev-0.6~20 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=40dde5855675736f39fec86d2835d512f96211c5;p=platform%2Fupstream%2Flibevdev.git doxygen: invocation of doxygen fails due to hard coded path The makefile does not use $(DOXYGEN) variable. Signed-off-by: Gaetan Nadon Signed-off-by: Peter Hutterer --- diff --git a/doc/Makefile.am b/doc/Makefile.am index ec6334c..02f2e41 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -2,7 +2,7 @@ if HAVE_DOXYGEN all-local: doxygen doxygen: libevdev.doxygen - doxygen $< + $(DOXYGEN) $< clean-local: rm -rf html