From bef1a560074e54e5e0bae267b783f89324026f16 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Wed, 31 Dec 2025 19:27:56 +0200 Subject: [PATCH] ports: Update git 2.48.1->2.52.0 also remove curl link hack as updating curl port fixed the issue --- ports/git/build.sh | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/ports/git/build.sh b/ports/git/build.sh index b57f8dde..1316a274 100755 --- a/ports/git/build.sh +++ b/ports/git/build.sh @@ -1,8 +1,8 @@ #!/bin/bash ../install.sh NAME='git' -VERSION='2.48.1' -DOWNLOAD_URL="https://www.kernel.org/pub/software/scm/git/git-$VERSION.tar.gz#51b4d03b1e311ba673591210f94f24a4c5781453e1eb188822e3d9cdc04c2212" +VERSION='2.52.0' +DOWNLOAD_URL="https://www.kernel.org/pub/software/scm/git/git-$VERSION.tar.xz#3cd8fee86f69a949cb610fee8cd9264e6873d07fa58411f6060b3d62729ed7c5" DEPENDENCIES=('zlib' 'openssl' 'curl') CONFIGURE_OPTIONS=( '--with-curl' @@ -11,7 +11,3 @@ CONFIGURE_OPTIONS=( ac_cv_snprintf_returns_bogus=no ac_cv_lib_curl_curl_global_init=yes ) - -build() { - make -j$(nproc) CURL_LDFLAGS='-lcurl -lssl -lcrypto -lz -lzstd' || exit 1 -}