summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Dufresne <nicolas.dufresne@collabora.com>2011-10-31 16:21:56 -0400
committerNicolas Dufresne <nicolas.dufresne@collabora.com>2011-10-31 16:21:56 -0400
commitb464c2928c2bd8ded61d3e7077513f107ca7f1ce (patch)
tree4ef11d932457fa99f06dd3d1601410ebc7c62ef0
parent6380af6c8a3b18d9e5ce9e6621e6817a64115f2f (diff)
downloadtelepathy-logger-b464c2928c2bd8ded61d3e7077513f107ca7f1ce.tar.gz
Fixing some non-quiet actions
-rw-r--r--data/Makefile.am8
-rw-r--r--telepathy-logger/Makefile.am6
2 files changed, 7 insertions, 7 deletions
diff --git a/data/Makefile.am b/data/Makefile.am
index a4002f0..7759e18 100644
--- a/data/Makefile.am
+++ b/data/Makefile.am
@@ -35,10 +35,10 @@ CLEANFILES = \
# Generates Logger.client file
Logger.client: $(clientfile_parts)
- cp $(top_srcdir)/data/Logger.Observer.client.in $(clientfile_DATA)
- cat $(top_srcdir)/data/Logger.Text.client.in >> $(clientfile_DATA)
+ @cp $(top_srcdir)/data/Logger.Observer.client.in $(clientfile_DATA)
+ @cat $(top_srcdir)/data/Logger.Text.client.in >> $(clientfile_DATA)
if ENABLE_CALL
- cat $(top_srcdir)/data/Logger.Call.client.in >> $(clientfile_DATA)
+ @cat $(top_srcdir)/data/Logger.Call.client.in >> $(clientfile_DATA)
endif
- cat $(top_srcdir)/data/Logger.Recover.client.in >> $(clientfile_DATA)
+ $(AM_V_GEN)cat $(top_srcdir)/data/Logger.Recover.client.in >> $(clientfile_DATA)
diff --git a/telepathy-logger/Makefile.am b/telepathy-logger/Makefile.am
index 959bcf4..d57ea49 100644
--- a/telepathy-logger/Makefile.am
+++ b/telepathy-logger/Makefile.am
@@ -56,11 +56,11 @@ LIBTPL_HEADERS = \
$(NULL)
%-marshal.c: %-marshal.list Makefile.am
- $(QUIET_GEN)echo "#include \"tpl-marshal.h\"" > $@
- $(QUIET_GEN)glib-genmarshal --body --prefix=tpl_marshal $< >> $@
+ $(AM_V_GEN)echo "#include \"tpl-marshal.h\"" > $@
+ $(AM_V_GEN)glib-genmarshal --body --prefix=tpl_marshal $< >> $@
%-marshal.h: %-marshal.list Makefile.am
- $(QUIET_GEN)glib-genmarshal --header --prefix=tpl_marshal $< > $@
+ $(AM_V_GEN)glib-genmarshal --header --prefix=tpl_marshal $< > $@
BUILT_SOURCES = \
tpl-marshal.c tpl-marshal.h \