From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B17D215808A for ; Tue, 22 Jul 2025 20:43:05 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 9B1A534134D for ; Tue, 22 Jul 2025 20:43:05 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 92B5C11055E; Tue, 22 Jul 2025 20:43:04 +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) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 8970411055E for ; Tue, 22 Jul 2025 20:43:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 46426340ED3 for ; Tue, 22 Jul 2025 20:43:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B020B3293 for ; Tue, 22 Jul 2025 20:43:02 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1753216978.57119bdc51dc0cfd9907dfc6c746117bc758f069.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/emacs-common/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/emacs-common/emacs-common-1.13.ebuild X-VCS-Directories: app-emacs/emacs-common/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 57119bdc51dc0cfd9907dfc6c746117bc758f069 X-VCS-Branch: master Date: Tue, 22 Jul 2025 20:43:02 +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: 0f0d8f95-977b-4dbd-b2c2-073eab5c0c92 X-Archives-Hash: 0567e117b7619bcfe345f11aed90f9fe commit: 57119bdc51dc0cfd9907dfc6c746117bc758f069 Author: Ulrich Müller gentoo org> AuthorDate: Tue Jul 22 20:41:15 2025 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Tue Jul 22 20:42:58 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57119bdc app-emacs/emacs-common: Fix sed expression Signed-off-by: Ulrich Müller gentoo.org> app-emacs/emacs-common/emacs-common-1.13.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-emacs/emacs-common/emacs-common-1.13.ebuild b/app-emacs/emacs-common/emacs-common-1.13.ebuild index f9a16b5ff3db..292c94dcc5dd 100644 --- a/app-emacs/emacs-common/emacs-common-1.13.ebuild +++ b/app-emacs/emacs-common/emacs-common-1.13.ebuild @@ -34,7 +34,7 @@ SITEFILE="10${PN}-gentoo.el" src_prepare() { default if [[ -n ${EPREFIX} ]]; then - sed -i -E -e "s,/(bin|sbin|usr)/,${EPREFIX}&," \ + sed -i -E -e "s,/(bin|sbin|usr)/,${EPREFIX},g" \ subdirs.el.in emacs.initd emacs.service \ emacs.desktop emacsclient.desktop || die fi