diff options
author | Rob Bradford <rob@linux.intel.com> | 2011-03-16 17:31:50 +0000 |
---|---|---|
committer | Rob Bradford <rob@linux.intel.com> | 2011-03-16 17:31:50 +0000 |
commit | d4a606967f7f044a7a79e541b893e064b8466797 (patch) | |
tree | fc3f17862f202bc7932549b7987eccca3290134e | |
parent | 067c80764ba4d8af4261712ec3379fbe4f67848e (diff) |
build: Fix scanner library flags to fix distchecklibrest-0.7.7
-rw-r--r-- | docs/reference/rest/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/reference/rest/Makefile.am b/docs/reference/rest/Makefile.am index c9a31cc..2553b29 100644 --- a/docs/reference/rest/Makefile.am +++ b/docs/reference/rest/Makefile.am @@ -72,7 +72,9 @@ expand_content_files= # e.g. INCLUDES=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS) # e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib) INCLUDES=-I$(top_srcdir) -I$(top_builddir) $(GLIB_CFLAGS) $(SOUP_CFLAGS) $(XML_CFLAGS) -GTKDOC_LIBS=$(top_builddir)/rest/librest-@API_VERSION@.la $(top_builddir)/rest-extras/librest-extras-@API_VERSION@.la +GTKDOC_LIBS=$(top_builddir)/rest/librest-@API_VERSION@.la $(top_builddir)/rest-extras/librest-extras-@API_VERSION@.la \ + $(GLIB_LIBS) $(SOUP_LIBS) $(XML_LIBS) + # This includes the standard gtk-doc make rules, copied by gtkdocize. include $(top_srcdir)/gtk-doc.make |