build: fix host build stampfile usage, fixes spurious errors with missing opkg host binary after deleting the staging dir
SVN-Revision: 33776
This commit is contained in:
parent
14e14faa0b
commit
6d1884c583
1 changed files with 14 additions and 25 deletions
|
@ -164,9 +164,17 @@ ifndef DUMP
|
||||||
touch $$@
|
touch $$@
|
||||||
|
|
||||||
$(call Host/Exports,$(HOST_STAMP_BUILT))
|
$(call Host/Exports,$(HOST_STAMP_BUILT))
|
||||||
ifdef Host/Install
|
$(HOST_STAMP_BUILT): $(HOST_STAMP_CONFIGURED)
|
||||||
host-install: $(if $(STAMP_BUILT),$(HOST_STAMP_BUILT),$(HOST_STAMP_INSTALLED))
|
$(foreach hook,$(Hooks/HostCompile/Pre),$(call $(hook))$(sep))
|
||||||
endif
|
$(call Host/Compile)
|
||||||
|
$(foreach hook,$(Hooks/HostCompile/Post),$(call $(hook))$(sep))
|
||||||
|
touch $$@
|
||||||
|
|
||||||
|
$(HOST_STAMP_INSTALLED): $(HOST_STAMP_BUILT) $(if $(FORCE_HOST_INSTALL),FORCE)
|
||||||
|
$(call Host/Install)
|
||||||
|
$(foreach hook,$(Hooks/HostInstall/Post),$(call $(hook))$(sep))
|
||||||
|
mkdir -p $$(shell dirname $$@)
|
||||||
|
touch $$@
|
||||||
|
|
||||||
ifndef STAMP_BUILT
|
ifndef STAMP_BUILT
|
||||||
prepare: host-prepare
|
prepare: host-prepare
|
||||||
|
@ -175,31 +183,12 @@ ifndef DUMP
|
||||||
clean: host-clean
|
clean: host-clean
|
||||||
update: host-update
|
update: host-update
|
||||||
refresh: host-refresh
|
refresh: host-refresh
|
||||||
|
|
||||||
$(HOST_STAMP_BUILT): $(HOST_STAMP_CONFIGURED)
|
|
||||||
$(foreach hook,$(Hooks/HostCompile/Pre),$(call $(hook))$(sep))
|
|
||||||
$(call Host/Compile)
|
|
||||||
$(foreach hook,$(Hooks/HostCompile/Post),$(call $(hook))$(sep))
|
|
||||||
touch $$@
|
|
||||||
|
|
||||||
$(HOST_STAMP_INSTALLED): $(HOST_STAMP_BUILT) $(if $(FORCE_HOST_INSTALL),FORCE)
|
|
||||||
$(call Host/Install)
|
|
||||||
$(foreach hook,$(Hooks/HostInstall/Post),$(call $(hook))$(sep))
|
|
||||||
mkdir -p $$(shell dirname $$@)
|
|
||||||
touch $$@
|
|
||||||
else
|
|
||||||
$(HOST_STAMP_BUILT): $(HOST_STAMP_CONFIGURED) $(if $(FORCE_HOST_INSTALL),FORCE)
|
|
||||||
$(foreach hook,$(Hooks/HostCompile/Pre),$(call $(hook))$(sep))
|
|
||||||
$(call Host/Compile)
|
|
||||||
$(foreach hook,$(Hooks/HostCompile/Post),$(call $(hook))$(sep))
|
|
||||||
$(call Host/Install)
|
|
||||||
$(foreach hook,$(Hooks/HostInstall/Post),$(call $(hook))$(sep))
|
|
||||||
touch $$@
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
host-prepare: $(HOST_STAMP_PREPARED)
|
host-prepare: $(HOST_STAMP_PREPARED)
|
||||||
host-configure: $(HOST_STAMP_CONFIGURED)
|
host-configure: $(HOST_STAMP_CONFIGURED)
|
||||||
host-compile: $(HOST_STAMP_BUILT)
|
host-compile: $(HOST_STAMP_BUILT) $(if $(STAMP_BUILT),$(HOST_STAMP_INSTALLED))
|
||||||
host-install:
|
host-install: $(HOST_STAMP_INSTALLED)
|
||||||
host-clean: FORCE
|
host-clean: FORCE
|
||||||
$(call Host/Clean)
|
$(call Host/Clean)
|
||||||
$(call Host/Uninstall)
|
$(call Host/Uninstall)
|
||||||
|
|
Loading…
Reference in a new issue