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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E982C13835B for ; Tue, 25 May 2021 08:25:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 460B0E0845; Tue, 25 May 2021 08:25:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2B674E0843 for ; Tue, 25 May 2021 08:25:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 59B1B33BF24 for ; Tue, 25 May 2021 08:25:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B353C79D for ; Tue, 25 May 2021 08:25:12 +0000 (UTC) From: "Yixun Lan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Yixun Lan" Message-ID: <1621931047.d859320aa840dfea6974ffb13443441bf45a294e.dlan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/xorg-cf-files/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/xorg-cf-files/xorg-cf-files-1.0.6-r2.ebuild X-VCS-Directories: x11-misc/xorg-cf-files/ X-VCS-Committer: dlan X-VCS-Committer-Name: Yixun Lan X-VCS-Revision: d859320aa840dfea6974ffb13443441bf45a294e X-VCS-Branch: master Date: Tue, 25 May 2021 08:25:12 +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: 8cbe6bf4-d8ca-4f03-8a64-6809741bcdb4 X-Archives-Hash: ba8f38a8cf9471fd7528c1998e9bc254 commit: d859320aa840dfea6974ffb13443441bf45a294e Author: Yixun Lan gentoo org> AuthorDate: Tue May 25 02:35:26 2021 +0000 Commit: Yixun Lan gentoo org> CommitDate: Tue May 25 08:24:07 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d859320a x11-misc/xorg-cf-files: fix build err on ARCH=riscv this due to $(get_libdir) expand to 'lib64/lp64d' no actual functional change added Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Yixun Lan gentoo.org> x11-misc/xorg-cf-files/xorg-cf-files-1.0.6-r2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x11-misc/xorg-cf-files/xorg-cf-files-1.0.6-r2.ebuild b/x11-misc/xorg-cf-files/xorg-cf-files-1.0.6-r2.ebuild index c44c96e2fa9..5ac95d9db22 100644 --- a/x11-misc/xorg-cf-files/xorg-cf-files-1.0.6-r2.ebuild +++ b/x11-misc/xorg-cf-files/xorg-cf-files-1.0.6-r2.ebuild @@ -37,7 +37,7 @@ src_install() { default echo "#define ManDirectoryRoot ${EPREFIX}/usr/share/man" >> \ "${ED}"/usr/$(get_libdir)/X11/config/host.def || die - sed -i -e "s/LibDirName *lib$/LibDirName $(get_libdir)/" \ + sed -i -e "s|LibDirName *lib$|LibDirName $(get_libdir)|" \ "${ED}"/usr/$(get_libdir)/X11/config/Imake.tmpl || die "failed libdir sed" sed -i -e "s|LibDir Concat(ProjectRoot,/lib/X11)|LibDir Concat(ProjectRoot,/$(get_libdir)/X11)|" \ "${ED}"/usr/$(get_libdir)/X11/config/X11.tmpl || die "failed libdir sed"