Sat, 25 Oct 2014 09:46:21 -0700
Fix building doc for Finch.
Without this change I get these error when running 'make install' from
doc/reference/finch/:
DOC Preparing build
DOC Scanning header files
DOC Introspecting gobjects
/usr/bin/ld: .libs/finch-scan.o: undefined reference to symbol 'gnt_button_get_type'
/home/dude/code/prefix/lib/libgnt.so.0: error adding symbols: DSO missing from command line
collect2: error: ld returned 1 exit status
Linking of scanner failed:
make: *** [scan-build.stamp] Error 1
| doc/reference/finch/Makefile.am | file | annotate | diff | comparison | revisions |
--- a/doc/reference/finch/Makefile.am Thu Oct 23 23:40:58 2014 -0700 +++ b/doc/reference/finch/Makefile.am Sat Oct 25 09:46:21 2014 -0700 @@ -106,7 +106,8 @@ $(GLIB_LIBS) \ $(LIBXML_LIBS) \ $(GNT_LIBS) \ - $(GSTREAMER_LIBS) + $(GSTREAMER_LIBS) \ + $(top_builddir)/finch/libgnt/libgnt.la # This includes the standard gtk-doc make rules, copied by gtkdocize. include $(top_srcdir)/gtk-doc.make