From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 3CA7158973 for ; Wed, 10 Feb 2016 21:51:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3F48EE0886; Wed, 10 Feb 2016 21:51:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E097FE0886 for ; Wed, 10 Feb 2016 21:51:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 06242340ABF for ; Wed, 10 Feb 2016 21:51:07 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0EE418DF for ; Wed, 10 Feb 2016 21:51:05 +0000 (UTC) From: "Dirkjan Ochtman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Dirkjan Ochtman" Message-ID: <1455141049.c89e33083a68fef8c44ebf971e07b42ca69a1c4f.djc@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/syncthing/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-p2p/syncthing/syncthing-0.12.18.ebuild X-VCS-Directories: net-p2p/syncthing/ X-VCS-Committer: djc X-VCS-Committer-Name: Dirkjan Ochtman X-VCS-Revision: c89e33083a68fef8c44ebf971e07b42ca69a1c4f X-VCS-Branch: master Date: Wed, 10 Feb 2016 21:51:05 +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-Archives-Salt: 8c76b8fb-40e0-4706-bb02-f7812b61ef67 X-Archives-Hash: 31517ff151b5b28fa3bce46351105ff3 commit: c89e33083a68fef8c44ebf971e07b42ca69a1c4f Author: Dirkjan Ochtman gentoo org> AuthorDate: Wed Feb 10 21:50:49 2016 +0000 Commit: Dirkjan Ochtman gentoo org> CommitDate: Wed Feb 10 21:50:49 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c89e3308 net-p2p/syncthing: fix path to systemd unit files net-p2p/syncthing/syncthing-0.12.18.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net-p2p/syncthing/syncthing-0.12.18.ebuild b/net-p2p/syncthing/syncthing-0.12.18.ebuild index f56efca..1aef4d5 100644 --- a/net-p2p/syncthing/syncthing-0.12.18.ebuild +++ b/net-p2p/syncthing/syncthing-0.12.18.ebuild @@ -37,6 +37,6 @@ src_install() { cd src/${EGO_PN} dobin bin/* dodoc README.md AUTHORS CONTRIBUTING.md - systemd_dounit "${S}"/etc/linux-systemd/system/${PN}@.service - systemd_douserunit "${S}"/etc/linux-systemd/user/${PN}.service + systemd_dounit "${S}"/src/${EGO_PN}/etc/linux-systemd/system/${PN}@.service + systemd_douserunit "${S}"/src/${EGO_PN}/etc/linux-systemd/user/${PN}.service }