From 40dde5855675736f39fec86d2835d512f96211c5 Mon Sep 17 00:00:00 2001 From: Gaetan Nadon Date: Sun, 24 Nov 2013 08:02:26 -0500 Subject: [PATCH] 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 --- doc/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.34.1