summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorJens Georg <mail@jensge.org>2017-05-01 10:36:37 +0200
committerJens Georg <mail@jensge.org>2017-05-01 10:44:12 +0200
commitd9e3d3eb0357b9bdd8bd6e692d94eddfd98acd2b (patch)
treed02e262acaa7772d62faf4c15de17121c3dd800b /data
parent26264ddd4052e2e7e9f2d9aa5b6fa2eac1e790c3 (diff)
downloadrygel-d9e3d3eb0357b9bdd8bd6e692d94eddfd98acd2b.tar.gz
build: Remove useless use of cat
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 d68e4605..3cd94a69 100644
--- a/data/xml/Makefile.am
+++ b/data/xml/Makefile.am
@@ -16,7 +16,7 @@ xml_DATA = $(xml_in_files:.xml.in=.xml)
# Strip newlines and leading spaces from XML files as not all devices like them
%.xml: %.xml.in
- @cat < $< | sed -re "s,^ +,,g" | tr -d "\n" > $@
+ @$(SED) -re "s,^ +,,g" < $< | tr -d "\n" > $@
xmldir = $(datadir)/rygel/xml