From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1451828-garchives=archives.gentoo.org@lists.gentoo.org> 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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 994E2158020 for <garchives@archives.gentoo.org>; Mon, 31 Oct 2022 09:25:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C31F1E0F17; Mon, 31 Oct 2022 09:25:53 +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 pigeon.gentoo.org (Postfix) with ESMTPS id 87894E0F17 for <gentoo-commits@lists.gentoo.org>; Mon, 31 Oct 2022 09:25:53 +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 34677340FB1 for <gentoo-commits@lists.gentoo.org>; Mon, 31 Oct 2022 09:25:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 61C62609 for <gentoo-commits@lists.gentoo.org>; Mon, 31 Oct 2022 09:25:50 +0000 (UTC) From: "Ulrich Müller" <ulm@gentoo.org> 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" <ulm@gentoo.org> Message-ID: <1667208190.81d422e579e350c81d08dd50b1e1b63d6783fae1.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/xscreensaver/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/xscreensaver/xscreensaver-6.05.ebuild X-VCS-Directories: x11-misc/xscreensaver/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 81d422e579e350c81d08dd50b1e1b63d6783fae1 X-VCS-Branch: master Date: Mon, 31 Oct 2022 09:25:50 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ed7b1906-159b-45fe-9624-a514329d71e1 X-Archives-Hash: 392817dabc423b3ce3c28946cd6599b9 commit: 81d422e579e350c81d08dd50b1e1b63d6783fae1 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Mon Oct 31 09:23:10 2022 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Mon Oct 31 09:23:10 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81d422e5 x11-misc/xscreensaver: Fix path for removal of xscreensaver.service Closes: https://bugs.gentoo.org/878823 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org> x11-misc/xscreensaver/xscreensaver-6.05.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x11-misc/xscreensaver/xscreensaver-6.05.ebuild b/x11-misc/xscreensaver/xscreensaver-6.05.ebuild index 5e6910a7f3ff..9a1a99c055ec 100644 --- a/x11-misc/xscreensaver/xscreensaver-6.05.ebuild +++ b/x11-misc/xscreensaver/xscreensaver-6.05.ebuild @@ -221,7 +221,7 @@ src_install() { fi # Makefile installs xscreensaver.service regardless of --without-systemd if ! use systemd; then - rm "${ED}/usr/share/xscreensaver.service" || die + rm "${ED}/usr/share/${PN}/xscreensaver.service" || die fi }