diff options
| author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-04-26 11:51:08 +0200 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-04-26 19:53:15 +0200 |
| commit | a86dae0abe9686eee6fc75356a7a91b2332f636e (patch) | |
| tree | 9d81543b2ca76c2f2633d156d08225967a8dcaea | |
| parent | f9393716de935cb3a5805c753353e3d9bc9e2c29 (diff) | |
| download | buildroot-a86dae0abe9686eee6fc75356a7a91b2332f636e.tar.gz buildroot-a86dae0abe9686eee6fc75356a7a91b2332f636e.zip | |
pkg-generic: don't use DL_MODE in .stamp_downloaded
The .stamp_downloaded target is now only being used to really
download, and no longer for other activities like "source check" or
"external deps". So the check on DL_MODE being equal to DOWNLOAD is no
longer necessary.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
| -rw-r--r-- | package/pkg-generic.mk | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/package/pkg-generic.mk b/package/pkg-generic.mk index 81fc535c01..082b234a8e 100644 --- a/package/pkg-generic.mk +++ b/package/pkg-generic.mk @@ -71,7 +71,6 @@ endif # Retrieve the archive $(BUILD_DIR)/%/.stamp_downloaded: $(foreach hook,$($(PKG)_PRE_DOWNLOAD_HOOKS),$(call $(hook))$(sep)) -ifeq ($(DL_MODE),DOWNLOAD) # Only show the download message if it isn't already downloaded $(Q)for p in $($(PKG)_SOURCE) $($(PKG)_PATCH) $($(PKG)_EXTRA_DOWNLOADS) ; do \ if test ! -e $(DL_DIR)/`basename $$p` ; then \ @@ -79,7 +78,6 @@ ifeq ($(DL_MODE),DOWNLOAD) break ; \ fi ; \ done -endif $(if $($(PKG)_SOURCE),$(call DOWNLOAD,$($(PKG)_SITE:/=)/$($(PKG)_SOURCE))) $(foreach p,$($(PKG)_EXTRA_DOWNLOADS),\ $(if $(findstring ://,$(p)),\ @@ -94,10 +92,8 @@ endif )\ $(sep)) $(foreach hook,$($(PKG)_POST_DOWNLOAD_HOOKS),$(call $(hook))$(sep)) -ifeq ($(DL_MODE),DOWNLOAD) $(Q)mkdir -p $(@D) $(Q)touch $@ -endif # Unpack the archive $(BUILD_DIR)/%/.stamp_extracted: |

