summaryrefslogtreecommitdiff
path: root/core/mk/pkg-macros/install.mk
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2014-07-14 11:01:39 +0200
committerAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2014-07-14 11:01:39 +0200
commitca88f241213bc8f7b55e3f94f2c2aad857ad05ef (patch)
tree648ffb58dc3194f6a85307ca71228fdfeb337c42 /core/mk/pkg-macros/install.mk
parent9e9831e237134cf711d3866346b3f1834b70d318 (diff)
downloadembtoolkit-ca88f241213bc8f7b55e3f94f2c2aad857ad05ef.tar.gz
embtoolkit-ca88f241213bc8f7b55e3f94f2c2aad857ad05ef.tar.bz2
embtoolkit-ca88f241213bc8f7b55e3f94f2c2aad857ad05ef.tar.xz
Build system: add Quite to all internal install macros
Signed-off-by: Abdoulaye Walsimou Gaye <awg@embtoolkit.org>
Diffstat (limited to 'core/mk/pkg-macros/install.mk')
-rw-r--r--core/mk/pkg-macros/install.mk8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/mk/pkg-macros/install.mk b/core/mk/pkg-macros/install.mk
index 8ba548e..575a0f1 100644
--- a/core/mk/pkg-macros/install.mk
+++ b/core/mk/pkg-macros/install.mk
@@ -285,7 +285,7 @@ __embtk_xinstall_xpkg_allvarset-y = $(and $(__embtk_pkg_name), \
#
define embtk_install_pkg
$(if $(__embtk_xinstall_xpkg_allvarset-y),
- $(call __embtk_install_pkg,$(1)),
+ $(Q)$(call __embtk_install_pkg,$(1)),
$(call __embtk_install_paramsfailure,$(1)))
endef
define __embtk_install_pkg
@@ -308,7 +308,7 @@ endef
# $(call embtk_makeinstall_pkg,package[,autotooled])
#
define embtk_makeinstall_pkg
- $(call __embtk_install_pkg_make,$(1),$(2))
+ $(Q)$(call __embtk_install_pkg_make,$(1),$(2))
endef
#
@@ -319,7 +319,7 @@ endef
#
define embtk_install_hostpkg
$(if $(__embtk_xinstall_xpkg_allvarset-y),
- $(call __embtk_install_hostpkg,$(1)),
+ $(Q)$(call __embtk_install_hostpkg,$(1)),
$(call __embtk_install_paramsfailure,$(1)))
endef
define __embtk_install_hostpkg
@@ -343,7 +343,7 @@ endef
# $(call embtk_makeinstall_hostpkg,package[,autotooled])
#
define embtk_makeinstall_hostpkg
- $(call __embtk_install_hostpkg_make,$(1),$(2))
+ $(Q)$(call __embtk_install_hostpkg_make,$(1),$(2))
endef
#