summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mk/buildsystem.mk2
-rw-r--r--mk/rootfs.mk2
-rw-r--r--mk/toolchain.mk2
3 files changed, 3 insertions, 3 deletions
diff --git a/mk/buildsystem.mk b/mk/buildsystem.mk
index 5a0595c..18c8dda 100644
--- a/mk/buildsystem.mk
+++ b/mk/buildsystem.mk
@@ -119,7 +119,7 @@ define __embtk_mk_startbuild
$(call embtk_echo_blue,"\tInitramfs : $(if $(CONFIG_EMBTK_ROOTFS_HAVE_INITRAMFS_CPIO),Yes,No)")
$(call embtk_echo_blue,"\tsquashFS : $(if $(CONFIG_EMBTK_ROOTFS_HAVE_SQUASHFS),Yes,No)")
$(call embtk_echo_blue,"\tJFFS2 : $(if $(CONFIG_EMBTK_ROOTFS_HAVE_JFFS2),Yes,No)"))
- $(MAKE) buildtoolchain rootfs_build successful_build
+ $(MAKE) toolchain_install rootfs_build successful_build
endef
startbuild:
diff --git a/mk/rootfs.mk b/mk/rootfs.mk
index f682385..4289ec9 100644
--- a/mk/rootfs.mk
+++ b/mk/rootfs.mk
@@ -155,7 +155,7 @@ define __embtk_rootfs_build
$(call embtk_pinfo,"Selected root filesystems built successfully!")
endef
-rootfs_build: buildtoolchain host_packages_build
+rootfs_build: toolchain_install host_packages_build
$(Q)$(__embtk_rootfs_build)
else
# Build of root file system not selected
diff --git a/mk/toolchain.mk b/mk/toolchain.mk
index c7eb138..de75b44 100644
--- a/mk/toolchain.mk
+++ b/mk/toolchain.mk
@@ -203,7 +203,7 @@ __embtk_toolchain_addons_inst = $(if $(strip $(__embtk_toolchain_addons_inst-y))
__embtk_toolchain_buildargs = $(if $(__embtk_toolchain_core_inst),core-addons)
__embtk_toolchain_buildargs += $(__embtk_toolchain_addons_inst)
-buildtoolchain:
+toolchain_install:
$(Q)$(call __embtk_toolchain_build,$(__embtk_toolchain_buildargs))
define __embtk_toolchain_clean