From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 68DAD15808C for ; Sun, 20 Feb 2022 00:31:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 55959E0814; Sun, 20 Feb 2022 00:31:39 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 37E7CE0814 for ; Sun, 20 Feb 2022 00:31:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 17063342F32 for ; Sun, 20 Feb 2022 00:31:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3D4982F9 for ; Sun, 20 Feb 2022 00:31:35 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1645316993.5973f2fdaef90add74d849934d5b96ab48dafa6e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/its4/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/its4/its4-1.1.1-r2.ebuild X-VCS-Directories: dev-util/its4/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 5973f2fdaef90add74d849934d5b96ab48dafa6e X-VCS-Branch: master Date: Sun, 20 Feb 2022 00:31:35 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 68c4bca7-f7e2-4a34-ac50-fe768c05b94d X-Archives-Hash: e97cb743082368a21b11d7f95344aaf8 commit: 5973f2fdaef90add74d849934d5b96ab48dafa6e Author: Thomas Bracht Laumann Jespersen laumann xyz> AuthorDate: Thu Feb 3 21:24:55 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Feb 20 00:29:53 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5973f2fd dev-util/its4: Fix build for clang/LLVM toolchain The config.C file has five instances of string literals being immediately followed by NEWLINE (a macro that expands to another string literal). C++11 requires a space between string literals. Signed-off-by: Thomas Bracht Laumann Jespersen laumann.xyz> Closes: https://bugs.gentoo.org/738936 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Sam James gentoo.org> dev-util/its4/its4-1.1.1-r2.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev-util/its4/its4-1.1.1-r2.ebuild b/dev-util/its4/its4-1.1.1-r2.ebuild index 5bb0c4ed44fc..86e78a42d315 100644 --- a/dev-util/its4/its4-1.1.1-r2.ebuild +++ b/dev-util/its4/its4-1.1.1-r2.ebuild @@ -22,6 +22,11 @@ src_prepare() { sed -i \ -e 's/$(CC) -o/$(CC) $(OPTIMIZATION) $(EXTRA_FLAGS) -o/' \ "${S}"/Makefile.in || die + + # Bug 738936 fails to compile with clang/LLVM toolchain + sed -i \ + -e 's/"NEWLINE/" NEWLINE/g'\ + "${S}"/config.C || die eapply_user }