diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2013-01-04 11:25:08 +0000 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2013-01-04 12:15:20 +0000 |
commit | 3b78a226708b5a5221159fadbef04cd29d48cb54 (patch) | |
tree | 251ecabfc14ec54380094484f851e3328005ae16 /tools | |
parent | a1461906f40342ff7c908db50cc06956d621213c (diff) |
tools: update the mtime-transferring hack from telepathy-glib master
This version is more reliable in out-of-tree builds.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile.am | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am index 6292143b..691ac753 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -21,18 +21,18 @@ EXTRA_DIST = \ xep.xsl glib-client-marshaller-gen.py: libglibcodegen.py - @touch $@ + $(AM_V_GEN)test -e ${srcdir}/$@ && touch ${srcdir}/$@ glib-ginterface-gen.py: libglibcodegen.py - @touch $@ + $(AM_V_GEN)test -e ${srcdir}/$@ && touch ${srcdir}/$@ glib-gtypes-generator.py: libglibcodegen.py - @touch $@ + $(AM_V_GEN)test -e ${srcdir}/$@ && touch ${srcdir}/$@ glib-signals-marshal-gen.py: libglibcodegen.py - @touch $@ + $(AM_V_GEN)test -e ${srcdir}/$@ && touch ${srcdir}/$@ glib-interfaces-generator.xsl: c-interfaces-generator.xsl - @touch $@ + $(AM_V_GEN)test -e ${srcdir}/$@ && touch ${srcdir}/$@ glib-interfaces-body-generator.xsl: c-interfaces-generator.xsl - @touch $@ + $(AM_V_GEN)test -e ${srcdir}/$@ && touch ${srcdir}/$@ maintainer-update-from-xmpp.org: set -e; \ |