summaryrefslogtreecommitdiff
path: root/make.tmpl.in
diff options
context:
space:
mode:
authorZdenek Kabelac <zkabelac@redhat.com>2018-06-22 23:30:42 +0200
committerZdenek Kabelac <zkabelac@redhat.com>2018-06-22 23:36:19 +0200
commitfa58fc32576a08bf11fa98623473f5e6ec5b6d68 (patch)
tree95dc77bd67c2de98699e2eb062ae09c6f2367d1c /make.tmpl.in
parentc728d88e11ffed97f8a5b96e1c0595a2462c5edc (diff)
downloadlvm2-fa58fc32576a08bf11fa98623473f5e6ec5b6d68.tar.gz
build: support --disable-silent-rules
Add support for standardized option for have verbose builds. Useful for distro builds where more details can be useful.
Diffstat (limited to 'make.tmpl.in')
-rw-r--r--make.tmpl.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/make.tmpl.in b/make.tmpl.in
index 07cb18a67..38fdc73e2 100644
--- a/make.tmpl.in
+++ b/make.tmpl.in
@@ -13,6 +13,10 @@
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ifneq ("@SILENT_RULES@","yes")
+ V ?= 1
+endif
+
ifeq ($(V),1)
Q=
else