fix the host vs native stampfile dependencies to improve quilt support
SVN-Revision: 14629
This commit is contained in:
parent
db0a4e48f9
commit
fb4a318970
|
@ -69,7 +69,7 @@ define Build/DefaultTargets
|
||||||
$(if $(strip $(PKG_SOURCE_URL)),$(call Download,default))
|
$(if $(strip $(PKG_SOURCE_URL)),$(call Download,default))
|
||||||
$(call Build/Autoclean)
|
$(call Build/Autoclean)
|
||||||
|
|
||||||
$(STAMP_PREPARED): $(HOST_STAMP_INSTALLED)
|
$(STAMP_PREPARED):
|
||||||
@-rm -rf $(PKG_BUILD_DIR)
|
@-rm -rf $(PKG_BUILD_DIR)
|
||||||
@mkdir -p $(PKG_BUILD_DIR)
|
@mkdir -p $(PKG_BUILD_DIR)
|
||||||
$(foreach hook,$(Hooks/Prepare/Pre),$(call $(hook))$(sep))
|
$(foreach hook,$(Hooks/Prepare/Pre),$(call $(hook))$(sep))
|
||||||
|
@ -77,7 +77,7 @@ define Build/DefaultTargets
|
||||||
$(foreach hook,$(Hooks/Prepare/Post),$(call $(hook))$(sep))
|
$(foreach hook,$(Hooks/Prepare/Post),$(call $(hook))$(sep))
|
||||||
touch $$@
|
touch $$@
|
||||||
|
|
||||||
$(STAMP_CONFIGURED): $(STAMP_PREPARED)
|
$(STAMP_CONFIGURED): $(STAMP_PREPARED) $(HOST_STAMP_INSTALLED)
|
||||||
$(foreach hook,$(Hooks/Configure/Pre),$(call $(hook))$(sep))
|
$(foreach hook,$(Hooks/Configure/Pre),$(call $(hook))$(sep))
|
||||||
$(Build/Configure)
|
$(Build/Configure)
|
||||||
$(foreach hook,$(Hooks/Configure/Post),$(call $(hook))$(sep))
|
$(foreach hook,$(Hooks/Configure/Post),$(call $(hook))$(sep))
|
||||||
|
|
Loading…
Reference in New Issue