From 933b4984129efd7ea24766c48bcd95d3197504b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Poisson?= Date: Fri, 5 Oct 2018 16:40:54 +0200 Subject: [PATCH] jpeg: use https: URL instead of git: This way download can work when non HTTP ports are blocked. --- pythonforandroid/recipes/jpeg/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pythonforandroid/recipes/jpeg/__init__.py b/pythonforandroid/recipes/jpeg/__init__.py index a6fe6c16c2..7801af2102 100644 --- a/pythonforandroid/recipes/jpeg/__init__.py +++ b/pythonforandroid/recipes/jpeg/__init__.py @@ -8,7 +8,7 @@ class JpegRecipe(NDKRecipe): name = 'jpeg' version = 'linaro-android' - url = 'git://git.linaro.org/people/tomgall/libjpeg-turbo/libjpeg-turbo.git' + url = 'git+https://git.linaro.org/people/tomgall/libjpeg-turbo/libjpeg-turbo' patches = ['build-static.patch']