|
@@ -133,7 +133,7 @@ $(BUILD_DIR)/%/.stamp_downloaded:
|
|
|
$(foreach hook,$($(PKG)_PRE_DOWNLOAD_HOOKS),$(call $(hook))$(sep))
|
|
|
# Only show the download message if it isn't already downloaded
|
|
|
$(Q)for p in $($(PKG)_ALL_DOWNLOADS); do \
|
|
|
- if test ! -e $(DL_DIR)/`basename $$p` ; then \
|
|
|
+ if test ! -e $($(PKG)_DL_DIR)/`basename $$p` ; then \
|
|
|
$(call MESSAGE,"Downloading") ; \
|
|
|
break ; \
|
|
|
fi ; \
|
|
@@ -185,7 +185,7 @@ $(BUILD_DIR)/%/.stamp_patched:
|
|
|
@$(call step_start,patch)
|
|
|
@$(call MESSAGE,"Patching")
|
|
|
$(foreach hook,$($(PKG)_PRE_PATCH_HOOKS),$(call $(hook))$(sep))
|
|
|
- $(foreach p,$($(PKG)_PATCH),$(APPLY_PATCHES) $(@D) $(DL_DIR) $(notdir $(p))$(sep))
|
|
|
+ $(foreach p,$($(PKG)_PATCH),$(APPLY_PATCHES) $(@D) $($(PKG)_DL_DIR) $(notdir $(p))$(sep))
|
|
|
$(Q)( \
|
|
|
for D in $(PATCH_BASE_DIRS); do \
|
|
|
if test -d $${D}; then \
|
|
@@ -613,7 +613,7 @@ $(2)_TARGET_DIRCLEAN = $$($(2)_DIR)/.stamp_dircleaned
|
|
|
|
|
|
# default extract command
|
|
|
$(2)_EXTRACT_CMDS ?= \
|
|
|
- $$(if $$($(2)_SOURCE),$$(INFLATE$$(suffix $$($(2)_SOURCE))) $$(DL_DIR)/$$($(2)_SOURCE) | \
|
|
|
+ $$(if $$($(2)_SOURCE),$$(INFLATE$$(suffix $$($(2)_SOURCE))) $$($(2)_DL_DIR)/$$($(2)_SOURCE) | \
|
|
|
$$(TAR) --strip-components=$$($(2)_STRIP_COMPONENTS) \
|
|
|
-C $$($(2)_DIR) \
|
|
|
$$(foreach x,$$($(2)_EXCLUDES),--exclude='$$(x)' ) \
|
|
@@ -901,7 +901,7 @@ ifeq ($$($(2)_REDISTRIBUTE),YES)
|
|
|
# patches, as they are handled specially afterwards.
|
|
|
$$(foreach e,$$($(2)_ACTUAL_SOURCE_TARBALL) $$(notdir $$($(2)_EXTRA_DOWNLOADS)),\
|
|
|
$$(Q)support/scripts/hardlink-or-copy \
|
|
|
- $$(DL_DIR)/$$(e) \
|
|
|
+ $$($(2)_DL_DIR)/$$(e) \
|
|
|
$$($(2)_REDIST_SOURCES_DIR)$$(sep))
|
|
|
# Save patches and generate the series file
|
|
|
$$(Q)while read f; do \
|