diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2013-02-01 15:58:38 +0100 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2013-02-01 15:58:38 +0100 |
commit | 4a35d82420503b8f1b1d404cf6e47f3a1e47f384 (patch) | |
tree | c99168e122941792322f3471d4b3eb700e37e7eb /tail_build | |
parent | 42f1f1f5aee8f93568f94770fca8381ddd47420b (diff) |
fix build from tail_build
gb_Side is set either from toplevel Makefile or from any module Makefile,
but not when starting build from tail_build
Change-Id: I4df6eb221f5b778ce3c0234251f8dbbb56645028
Diffstat (limited to 'tail_build')
-rw-r--r-- | tail_build/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tail_build/Makefile b/tail_build/Makefile index aca0e3293d59..20bbfb177607 100644 --- a/tail_build/Makefile +++ b/tail_build/Makefile @@ -8,7 +8,10 @@ # ifeq ($(strip $(SOLARENV)),) -include $(dir $(realpath $(firstword $(MAKEFILE_LIST))))/../config_host.mk +ifeq ($(gb_Side),) +gb_Side:=host +endif +include $(dir $(realpath $(firstword $(MAKEFILE_LIST))))/../config_$(gb_Side).mk endif include $(SOLARENV)/gbuild/gbuild.mk |