summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorMatteo Settenvini <matteo@member.fsf.org>2017-02-16 12:34:35 -0300
committerJens Georg <mail@jensge.org>2017-05-01 10:44:08 +0200
commit26264ddd4052e2e7e9f2d9aa5b6fa2eac1e790c3 (patch)
tree41b9f0eebed5b45c3ae758d4c993da66530575d5 /data
parentec7e5dd971d1aed2df8688fe34d80176824ef8c7 (diff)
downloadrygel-26264ddd4052e2e7e9f2d9aa5b6fa2eac1e790c3.tar.gz
build: Fix stem rule for xml files
Some of the xml files are generated a first time from the configure script in the build folder, and hence were not found by the previous stemming. https://bugzilla.gnome.org/show_bug.cgi?id=778829
Diffstat (limited to 'data')
-rw-r--r--data/xml/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/xml/Makefile.am b/data/xml/Makefile.am
index 5fe4f1f9..d68e4605 100644
--- a/data/xml/Makefile.am
+++ b/data/xml/Makefile.am
@@ -15,7 +15,7 @@ xml_in_files = EnergyManagement.xml.in \
xml_DATA = $(xml_in_files:.xml.in=.xml)
# Strip newlines and leading spaces from XML files as not all devices like them
-%.xml: $(srcdir)/%.xml.in
+%.xml: %.xml.in
@cat < $< | sed -re "s,^ +,,g" | tr -d "\n" > $@
xmldir = $(datadir)/rygel/xml