diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2008-04-21 16:44:14 +0000 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2008-04-21 16:44:14 +0000 |
commit | 881c56dfcf520435a62c1746d2a99603932246ae (patch) | |
tree | 6f4c5b6d532127748b6d133ba3336558aca89ec0 /data | |
parent | 11dba415f817f232cca23f950d2307d91ae928b1 (diff) |
Use slightly nicer sed syntax in data/Makefile.am
Diffstat (limited to 'data')
-rw-r--r-- | data/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/Makefile.am b/data/Makefile.am index 09e3e5ee..2d6abc46 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -11,7 +11,7 @@ service_DATA = org.freedesktop.Telepathy.ConnectionManager.gabble.service # non-archaic tarballs) org.freedesktop.Telepathy.ConnectionManager.gabble.service: gabble.service.in \ Makefile - @sed -e "s|\@libexecdir\@|$(libexecdir)|" $< > $@ + @sed -e "s|[@]libexecdir[@]|$(libexecdir)|" $< > $@ CLEANFILES = $(service_DATA) $(manager_DATA) |