diff options
author | Dan Williams <dcbw@redhat.com> | 2011-05-04 11:20:31 -0500 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2011-05-04 11:33:20 -0500 |
commit | 868129e37cd78a05e1ed00f742ebf7ab8200afe5 (patch) | |
tree | 66e828fdde8068f5d0f5e6cfce918861baac1deb | |
parent | 82cee08875363ed58e6dc010dc4b190d063d7035 (diff) |
build: build docs during distcheck and fix up udev rules install base
-rw-r--r-- | Makefile.am | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am index 309bda12..bcfca118 100644 --- a/Makefile.am +++ b/Makefile.am @@ -13,7 +13,7 @@ GENERATED_FILES = \ docs/spec.html: $(XMLS) introspection/all.xml doc-generator.xsl @install -d docs - $(XSLTPROC) doc-generator.xsl introspection/all.xml > $@ + $(XSLTPROC) $(top_srcdir)/doc-generator.xsl $(top_srcdir)/introspection/all.xml > $@ all: $(GENERATED_FILES) @@ -49,7 +49,7 @@ include_HEADERS = include/mm-modem.h include/mm-modem.h: $(XMLS) introspection/all.xml header-generator.xsl @install -d include - $(XSLTPROC) header-generator.xsl introspection/all.xml > $@ + $(XSLTPROC) $(top_srcdir)/header-generator.xsl $(top_srcdir)/introspection/all.xml > $@ %service: %service.in $(edit) $< >$@ @@ -63,7 +63,10 @@ edit = @sed \ -e 's|@localstatedir[@]|$(localstatedir)|g' \ -e 's|@libexecdir[@]|$(libexecdir)|g' -DISTCHECK_CONFIGURE_FLAGS = --with-udev-base-dir=$dc_install_base --with-tests=yes +DISTCHECK_CONFIGURE_FLAGS = \ + --with-udev-base-dir="$$dc_install_base" \ + --with-tests=yes \ + --with-docs=yes INTLTOOL_FILES = \ intltool-extract.in \ |