diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-01-24 15:48:30 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-02-05 19:34:05 -0600 |
commit | c857dff7fc4b180c1d405ea5584e06c0581427ae (patch) | |
tree | e2f20f13825aa2c0ba078ae77f2723452d9a957f /tail_build/Makefile | |
parent | 909cd34b7b0982078a50b9ed46cf57811d9571df (diff) |
switch to include-based build rather than sourced-based build
Diffstat (limited to 'tail_build/Makefile')
-rw-r--r-- | tail_build/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tail_build/Makefile b/tail_build/Makefile index 98a90a1e115d..4ee91d83dfa2 100644 --- a/tail_build/Makefile +++ b/tail_build/Makefile @@ -28,13 +28,12 @@ gb_PARTIALBUILD := T ifeq ($(strip $(SOLARENV)),) -include $(dir $(realpath $(firstword $(MAKEFILE_LIST))))/../solenv/gbuild/source_and_rerun.mk -else +include $(dir $(realpath $(firstword $(MAKEFILE_LIST))))/../config_host.mk +endif gb_SourceEnvAndRecurse_STAGE=gbuild include $(SOLARENV)/gbuild/gbuild.mk $(eval $(call gb_Module_make_global_targets,$(SRCDIR)/Module_tail_build.mk)) -endif # vim: set noet sw=4 ts=4: |