diff options
author | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2011-07-28 00:24:58 +0800 |
---|---|---|
committer | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2011-07-29 18:02:07 +0800 |
commit | 204fa9e744560be4bc0fbafbc5af95a3cf6b3a12 (patch) | |
tree | ef1638ab3cf705e3fffa9456308320eb9ea12ba0 /src | |
parent | 01b0be54353820459d4741f2858be21207f7e754 (diff) | |
download | gsoc2013-empathy-204fa9e744560be4bc0fbafbc5af95a3cf6b3a12.tar gsoc2013-empathy-204fa9e744560be4bc0fbafbc5af95a3cf6b3a12.tar.gz gsoc2013-empathy-204fa9e744560be4bc0fbafbc5af95a3cf6b3a12.tar.bz2 gsoc2013-empathy-204fa9e744560be4bc0fbafbc5af95a3cf6b3a12.tar.lz gsoc2013-empathy-204fa9e744560be4bc0fbafbc5af95a3cf6b3a12.tar.xz gsoc2013-empathy-204fa9e744560be4bc0fbafbc5af95a3cf6b3a12.tar.zst gsoc2013-empathy-204fa9e744560be4bc0fbafbc5af95a3cf6b3a12.zip |
src: give empathy-call sources to the marshal generator
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 2a34494eb..e6574077d 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -262,10 +262,10 @@ dist_man_MANS = \ empathy.1 \ empathy-accounts.1 -src-marshal.list: $(empathy_SOURCES) Makefile.am +src-marshal.list: $(empathy_SOURCES) $(empathy_call_SOURCES) Makefile.am $(AM_V_GEN)( cd $(srcdir) && \ sed -n -e 's/.*src_marshal_\([[:upper:][:digit:]]*__[[:upper:][:digit:]_]*\).*/\1/p' \ - $(empathy_SOURCES) $(empathy_av_SOURCES) ) \ + $(empathy_SOURCES) $(empathy_av_SOURCES) $(empathy_call_SOURCES) ) \ | sed -e 's/__/:/' -e 'y/_/,/' | sort -u > $@.tmp @if cmp -s $@.tmp $@; then \ rm $@.tmp; \ |