Received: by mail.netbsd.org (Postfix, from userid 605) id F1B2C84EA5; Sun, 12 Feb 2023 12:17:13 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2DC1C84E9B for ; Sun, 12 Feb 2023 12:17:13 +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 EicN2gsoh0BE for ; Sun, 12 Feb 2023 12:17:12 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 7B64C84D09 for ; Sun, 12 Feb 2023 12:17:12 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 6F3C1FA90; Sun, 12 Feb 2023 12:17:12 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_167620423287950" MIME-Version: 1.0 Date: Sun, 12 Feb 2023 12:17:12 +0000 From: "Tobias Nygren" Subject: CVS commit: pkgsrc/graphics/freeimage To: pkgsrc-changes@NetBSD.org Reply-To: tnn@netbsd.org X-Mailer: log_accum Message-Id: <20230212121712.6F3C1FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_167620423287950 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: tnn Date: Sun Feb 12 12:17:12 UTC 2023 Modified Files: pkgsrc/graphics/freeimage: Makefile.common Log Message: freeimage: fix SUBST issue /usr/xpg4/bin/tr on OpenIndiana gives "invalid byte sequence". Force C locale to fix it. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/graphics/freeimage/Makefile.common Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_167620423287950 Content-Disposition: inline Content-Length: 873 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/freeimage/Makefile.common diff -u pkgsrc/graphics/freeimage/Makefile.common:1.5 pkgsrc/graphics/freeimage/Makefile.common:1.6 --- pkgsrc/graphics/freeimage/Makefile.common:1.5 Tue Dec 13 13:34:48 2022 +++ pkgsrc/graphics/freeimage/Makefile.common Sun Feb 12 12:17:12 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.5 2022/12/13 13:34:48 jperkin Exp $ +# $NetBSD: Makefile.common,v 1.6 2023/02/12 12:17:12 tnn Exp $ # used by graphics/freeimage/Makefile # used by graphics/freeimageplus/Makefile @@ -31,7 +31,7 @@ SUBST_STAGE.cr= post-extract SUBST_FILES.cr+= Source/FreeImage/PluginBMP.cpp SUBST_FILES.cr+= Source/FreeImage/PluginDDS.cpp SUBST_FILES.cr+= Source/FreeImage/PluginTIFF.cpp -SUBST_FILTER_CMD.cr= ${TR} -d '\r' +SUBST_FILTER_CMD.cr= ${SETENV} LC_ALL=C ${TR} -d '\r' SUBST_NOOP_OK.cr= yes pre-configure: --_----------=_167620423287950--