summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2012-01-01 14:53:09 +0100
committerAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2012-01-01 14:53:09 +0100
commitcd7db823455dbc33e3f4d55f2f0bb2ab2c732e02 (patch)
tree56582e3f4006cc40eba343d1682f1c01c9119897 /mk
parent7abca3505a3e49ec2b43554e4c8bcb6b626182ce (diff)
downloadembtoolkit-cd7db823455dbc33e3f4d55f2f0bb2ab2c732e02.tar.gz
embtoolkit-cd7db823455dbc33e3f4d55f2f0bb2ab2c732e02.tar.bz2
embtoolkit-cd7db823455dbc33e3f4d55f2f0bb2ab2c732e02.tar.xz
Build system: generic install macro: install dependencies before print of install message
Signed-off-by: Abdoulaye Walsimou Gaye <awg@embtoolkit.org>
Diffstat (limited to 'mk')
-rw-r--r--mk/macros.packages.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/macros.packages.mk b/mk/macros.packages.mk
index e0ee806..68b7553 100644
--- a/mk/macros.packages.mk
+++ b/mk/macros.packages.mk
@@ -337,8 +337,8 @@ __embtk_single_make_hostinstall = $(__embtk_pkg_makeenv) \
__embtk_autotoolspkg-y=$(2)
define __embtk_install_pkg_make
- $(call embtk_pinfo,"Compile/Install $(__embtk_pkg_name)-$(__embtk_pkg_version) in your root filesystem...")
$(Q)$(if $(strip $(__embtk_pkg_deps)),$(MAKE) $(__embtk_pkg_deps))
+ $(call embtk_pinfo,"Compile/Install $(__embtk_pkg_name)-$(__embtk_pkg_version) in your root filesystem...")
$(Q)$(call embtk_download_pkg,$(1))
$(Q)$(call embtk_decompress_pkg,$(1))
$(Q)$(if $(embtk_beforeinstall_$(pkgv)),$(embtk_beforeinstall_$(pkgv)))
@@ -354,8 +354,8 @@ define __embtk_install_pkg_make
$(Q)touch $(__embtk_pkg_dotinstalled_f)
endef
define __embtk_install_hostpkg_make
- $(call embtk_pinfo,"Compile/Install $(__embtk_pkg_name)-$(__embtk_pkg_version) for host...")
$(Q)$(if $(strip $(__embtk_pkg_deps)),$(MAKE) $(__embtk_pkg_deps))
+ $(call embtk_pinfo,"Compile/Install $(__embtk_pkg_name)-$(__embtk_pkg_version) for host...")
$(Q)$(call embtk_download_pkg,$(1))
$(Q)$(call embtk_decompress_pkg,$(1))
$(if $(embtk_beforeinstall_$(pkgv)),$(embtk_beforeinstall_$(pkgv)))