Received: by mail.netbsd.org (Postfix, from userid 605) id A31F484D7A; Fri, 6 Jan 2023 20:09:59 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D0EB084D13 for ; Fri, 6 Jan 2023 20:09:58 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id m3uXkN-sy1JE for ; Fri, 6 Jan 2023 20:09:58 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 2118284CFC for ; Fri, 6 Jan 2023 20:09:58 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1359BFA90; Fri, 6 Jan 2023 20:09:58 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_167303579847770" MIME-Version: 1.0 Date: Fri, 6 Jan 2023 20:09:58 +0000 From: "Benny Siegert" Subject: CVS commit: [pkgsrc-2022Q4] pkgsrc/lang/elixir To: pkgsrc-changes@NetBSD.org Reply-To: bsiegert@netbsd.org X-Mailer: log_accum Message-Id: <20230106200958.1359BFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_167303579847770 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: bsiegert Date: Fri Jan 6 20:09:58 UTC 2023 Modified Files: pkgsrc/lang/elixir [pkgsrc-2022Q4]: Makefile Log Message: Pullup ticket #6715 - requested by gdt lang/elixir: build fix (via patch) To generate a diff of this commit: cvs rdiff -u -r1.28 -r1.28.2.1 pkgsrc/lang/elixir/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_167303579847770 Content-Disposition: inline Content-Length: 1083 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/elixir/Makefile diff -u pkgsrc/lang/elixir/Makefile:1.28 pkgsrc/lang/elixir/Makefile:1.28.2.1 --- pkgsrc/lang/elixir/Makefile:1.28 Sat Oct 15 18:13:42 2022 +++ pkgsrc/lang/elixir/Makefile Fri Jan 6 20:09:57 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.28 2022/10/15 18:13:42 triaxx Exp $ +# $NetBSD: Makefile,v 1.28.2.1 2023/01/06 20:09:57 bsiegert Exp $ DISTNAME= elixir-1.14.0 CATEGORIES= lang @@ -18,7 +18,8 @@ USE_TOOLS+= gmake:run BUILD_TARGET= compile TEST_TARGET= test -ALL_ENV+= LC_ALL="en_US.UTF-8" +# https://github.com/elixir-lang/elixir/issues/12320 +MAKE_JOBS_SAFE= no MAKE_FLAGS+= MAN_PREFIX=${PREFIX}/${PKGMANDIR} @@ -31,3 +32,9 @@ CHECK_INTERPRETER_SKIP+= bin/mix CHECK_INTERPRETER_SKIP+= lib/elixir/bin/mix .include "../../mk/bsd.pkg.mk" + +# erlang chooses latin1 or utf8 encoding for file names depending on +# the character encoding, and elixir requires utf8. Force erl to +# choose utf8. We'd like to set LC_CTYPE, but we need to override the +# LC_ALL set by bsd.pkg.mk. +ALL_ENV+= LC_ALL="en_US.UTF-8" --_----------=_167303579847770--