From 5cf45be929ac0078b9a8e045044f266a653aa53c Mon Sep 17 00:00:00 2001 From: Zeckmathederg Date: Sat, 26 Oct 2024 20:21:12 -0600 Subject: [PATCH] cURL: Work around make clean not working. --- introduction/welcome/changelog.xml | 3 ++ shareddeps/net/curl.xml | 86 +++++++++++++++--------------- 2 files changed, 46 insertions(+), 43 deletions(-) diff --git a/introduction/welcome/changelog.xml b/introduction/welcome/changelog.xml index abfcd6594f..72cbd0cd65 100644 --- a/introduction/welcome/changelog.xml +++ b/introduction/welcome/changelog.xml @@ -42,6 +42,9 @@ October 25th, 2024 + + [Zeckmathederg] - cURL: Work around make clean not working. + [Zeckmathederg] - NSS: Work around make clean not working. diff --git a/shareddeps/net/curl.xml b/shareddeps/net/curl.xml index 244897413e..602579e678 100644 --- a/shareddeps/net/curl.xml +++ b/shareddeps/net/curl.xml @@ -31,8 +31,6 @@ functions like streaming media. - - @@ -83,10 +81,13 @@ commands: -./configure --prefix=/usr \ - --disable-static \ - --with-openssl \ - --with-ca-path=/etc/ssl/certs && +mkdir -v build && +cd build && + +../configure --prefix=/usr \ + --disable-static \ + --with-openssl \ + --with-ca-path=/etc/ssl/certs && make