summaryrefslogtreecommitdiff
path: root/xenserver
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2014-09-29 14:34:11 -0700
committerBen Pfaff <blp@nicira.com>2014-09-29 14:35:16 -0700
commitef44aa5001a4f6b06a4d65457d459bc004c37f48 (patch)
tree9f478651537b163d0bbf539a4e86d7a0984cd6bd /xenserver
parentddc3b06d348793ae3f858a832ce5c9053d7a621b (diff)
downloadopenvswitch-ef44aa5001a4f6b06a4d65457d459bc004c37f48.tar.gz
Makefiles: Add $(AM_V_GEN) annotations to clean up "make" output.
The Open vSwitch "make" output was still pretty verbose even when configured with --enable-silent-rules. This cleans it up. Signed-off-by: Ben Pfaff <blp@nicira.com> Acked-by: Joe Stringer <joestringer@nicira.com>
Diffstat (limited to 'xenserver')
-rw-r--r--xenserver/automake.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/xenserver/automake.mk b/xenserver/automake.mk
index 413e6347b..816b1b543 100644
--- a/xenserver/automake.mk
+++ b/xenserver/automake.mk
@@ -1,4 +1,4 @@
-# Copyright (C) 2009, 2010, 2011, 2012 Nicira, Inc.
+# Copyright (C) 2009, 2010, 2011, 2012, 2014 Nicira, Inc.
#
# Copying and distribution of this file, with or without modification,
# are permitted in any medium without royalty provided the copyright
@@ -27,6 +27,6 @@ EXTRA_DIST += \
xenserver/usr_share_openvswitch_scripts_sysconfig.template
$(srcdir)/xenserver/openvswitch-xen.spec: xenserver/openvswitch-xen.spec.in $(top_builddir)/config.status
- ($(ro_shell) && sed -e 's,[@]VERSION[@],$(VERSION),g') \
+ $(AM_V_GEN)($(ro_shell) && sed -e 's,[@]VERSION[@],$(VERSION),g') \
< $(srcdir)/xenserver/$(@F).in > $(@F).tmp || exit 1; \
if cmp -s $(@F).tmp $@; then touch $@; rm $(@F).tmp; else mv $(@F).tmp $@; fi