summaryrefslogtreecommitdiffstats
path: root/build/external/packages.mk
diff options
context:
space:
mode:
authorDamjan Marion <damarion@cisco.com>2019-03-29 21:22:09 +0100
committerDamjan Marion <damarion@cisco.com>2019-03-29 21:23:30 +0100
commitd93638e128e7eb042a53440a3e762cf04e6c5190 (patch)
tree93dc3261106c6c3df624db8959d42d1a98afd957 /build/external/packages.mk
parente524d45eff40c773049e03ea5063216b469bbfcc (diff)
revert quicly related build/external changes
We dont't want git pull there, there is simple way to grab tarball from github for every single commit Change-Id: I7a98cab7660750e48084279d8b9892cdf229bceb Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'build/external/packages.mk')
-rw-r--r--build/external/packages.mk32
1 files changed, 1 insertions, 31 deletions
diff --git a/build/external/packages.mk b/build/external/packages.mk
index d1126db7475..005c2a958b2 100644
--- a/build/external/packages.mk
+++ b/build/external/packages.mk
@@ -72,39 +72,9 @@ $(B)/.$1.extract.ok: $(B)/.$1.download.ok
$1-extract: $(B)/.$1.extract.ok
##############################################################################
-# Git clone & checkout
-##############################################################################
-
-$(B)/.$1.clone.ok:
- $$(call h1,"Cloning $1 $($1_repository)")
- @mkdir -p $$($1_src_dir)
- @git clone --recursive $$($1_repository) $$($1_src_dir)
-ifneq ($$($1_version),)
- $$(call h1,"Checking out $1 $($1_version)")
- cd $$($1_src_dir) && git -c advice.detachedHead=false checkout $$($1_version)
- cd $$($1_src_dir) && git submodule update --init
-endif
- @touch $$@
-
-.PHONY: $1-clone
-$1-clone: $(B)/.$1.clone.ok
-
-##############################################################################
-# Fetch source : clone or extract
-##############################################################################
-
-ifeq ($$($1_repository),)
-$(B)/.$1.fetchsrc.ok: $(B)/.$1.extract.ok
- @touch $$@
-else
-$(B)/.$1.fetchsrc.ok: $(B)/.$1.clone.ok
- @touch $$@
-endif
-
-##############################################################################
# Patch
##############################################################################
-$(B)/.$1.patch.ok: $(B)/.$1.fetchsrc.ok
+$(B)/.$1.patch.ok: $(B)/.$1.extract.ok
$$(call h1,"patching $1 $($1_version)")
ifneq ($$(wildcard $$($1_patch_dir)/*.patch),)
@for f in $$($1_patch_dir)/*.patch ; do \