From 2991f0f039707dbafa14eb9b2680ce9522502021 Mon Sep 17 00:00:00 2001 From: Thomas Jarosch Date: Wed, 16 Apr 2008 08:28:42 +0000 Subject: [PATCH] libftdi: (tomj) fix build for "out of tree" builds --- ChangeLog | 1 + doc/Doxyfile.in | 4 ++-- doc/Makefile.am | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 64cf333..85c7542 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,6 @@ New in 0.12 ----------- +* Fix build for "out of tree" builds * Fix USB config descriptor in the eeprom (Juergen Beisert) * Ability to purge RX/TX buffers separately (Arnim Läuger) * Setting of event and error character (Arnim Läuger) diff --git a/doc/Doxyfile.in b/doc/Doxyfile.in index f455bca..f0b5e5c 100644 --- a/doc/Doxyfile.in +++ b/doc/Doxyfile.in @@ -459,7 +459,7 @@ WARN_LOGFILE = # directories like "/usr/src/myproject". Separate the files or directories # with spaces. -INPUT = ../src +INPUT = @top_srcdir@/src # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp @@ -500,7 +500,7 @@ EXCLUDE_PATTERNS = # directories that contain example code fragments that are included (see # the \include command). -EXAMPLE_PATH = ../examples +EXAMPLE_PATH = @top_srcdir@/examples # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp diff --git a/doc/Makefile.am b/doc/Makefile.am index f0f6850..aa4455c 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -8,5 +8,5 @@ endif all: $(MANUALS) -html/index.html: ../src/*.c ../src/*.h ../examples/*.c +html/index.html: $(top_srcdir)/src/*.c $(top_srcdir)/src/*.h $(top_srcdir)/examples/*.c $(DOXYGEN) -- 1.7.1