From c4b878beb7d994391866cf178fbaa6e417e823f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juhani=20Krekel=C3=A4?= Date: Sun, 27 Aug 2023 20:22:22 +0300 Subject: [PATCH] Redisable perl support in git. If git with perl enabled is cross-compiled, the perl commands do not work correctly. As there is seemingly no easy fix for this, disable perl suppport again. --- ports/git/git.port | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ports/git/git.port b/ports/git/git.port index 58d473aa..b2aab51d 100644 --- a/ports/git/git.port +++ b/ports/git/git.port @@ -1,6 +1,5 @@ NAME=git BUILD_LIBRARIES='libiconv libz libcurl? libexpat? libintl? libpcre? libssl?' -RUNTIME_PROGRAMS='perl?' VERSION=2.14.3 DISTNAME=$NAME-$VERSION COMPRESSION=tar.xz @@ -17,4 +16,5 @@ CONFIGURE_VARS='ac_cv_fread_reads_directories=no ac_cv_snprintf_returns_bogus=no # that likes to colorize even when the output device is a pipe, which # causes trouble here. You can safely remove this sortie has learned the # error of his ways. -MAKE_VARS='V=1 MAKE=make' +# Perl is disabled because perl features do not cross-compile correctly. +MAKE_VARS='V=1 MAKE=make NO_PERL=NoThanks'