diff options
author | Dan Williams <dcbw@redhat.com> | 2012-01-09 16:26:27 -0600 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2012-01-09 16:26:27 -0600 |
commit | 41ecc9c305b109822581efcae039e13190409efa (patch) | |
tree | fb47947b55d1245871d00f1fde06031492cc5d9d | |
parent | a511112e1459dae14164fc4fbfb2b0fd90f95268 (diff) | |
download | ModemManager-41ecc9c305b109822581efcae039e13190409efa.tar.gz |
dbus: don't install introspection XML we don't really own
MM implements the DBus properties interface and of course that
requires some XML on our side for dbus-glib. But we shouldn't
install that along with our ModemManager-specific XML.
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index bcfca1187..1a7301265 100644 --- a/Makefile.am +++ b/Makefile.am @@ -55,7 +55,7 @@ include/mm-modem.h: $(XMLS) introspection/all.xml header-generator.xsl $(edit) $< >$@ xmldir = $(datadir)/dbus-1/interfaces -xml_DATA = $(filter-out introspection/all.xml, $(XMLS)) +xml_DATA = $(filter-out introspection/all.xml introspection/org.freedesktop.DBus.Properties.xml, $(XMLS)) edit = @sed \ -e 's|@sbindir[@]|$(sbindir)|g' \ |