From 8af6ae249a3549d11dbbf395d58ec1c670bbbdc5 Mon Sep 17 00:00:00 2001
From: Jeremy Soller <jeremy@system76.com>
Date: Sun, 31 Mar 2019 15:07:38 -0600
Subject: [PATCH] Disable ipv6 in curl

---
 recipes/curl/recipe.sh | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/recipes/curl/recipe.sh b/recipes/curl/recipe.sh
index 7ba99bd13..807a2a1b2 100644
--- a/recipes/curl/recipe.sh
+++ b/recipes/curl/recipe.sh
@@ -23,13 +23,14 @@ function recipe_build {
         --prefix=/ \
         --build=${BUILD} \
         --host=${HOST} \
-        --disable-tftp \
         --disable-ftp \
+        --disable-ipv6 \
         --disable-ntlm-wb \
+        --disable-tftp \
         --disable-threaded-resolver \
-        --with-zlib="$sysroot" \
+        --with-ca-path=/ssl/certs \
         --with-ssl="$sysroot" \
-        --with-ca-path=/ssl/certs
+        --with-zlib="$sysroot"
     make -j"$(nproc)"
     skip=1
 }
-- 
GitLab