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 D453013832E for ; Sun, 31 Jul 2016 00:46:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6A212E0B2F; Sun, 31 Jul 2016 00:46:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B4DCDE0B2F for ; Sun, 31 Jul 2016 00:46:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 16350340C50 for ; Sun, 31 Jul 2016 00:46:09 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 72CBA7E2 for ; Sun, 31 Jul 2016 00:46:06 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1469925962.ba61a756c4ad1b0b1c21ae2d8729b19214cfefb7.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/systemd/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/systemd/systemd-231.ebuild sys-apps/systemd/systemd-9999.ebuild X-VCS-Directories: sys-apps/systemd/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: ba61a756c4ad1b0b1c21ae2d8729b19214cfefb7 X-VCS-Branch: master Date: Sun, 31 Jul 2016 00:46:06 +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: ab5c5534-a26d-4381-848f-567d8e3585e1 X-Archives-Hash: 61ee623b0fc3dfa2990802bd839990f6 commit: ba61a756c4ad1b0b1c21ae2d8729b19214cfefb7 Author: Mike Gilbert gentoo org> AuthorDate: Sun Jul 31 00:38:14 2016 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Sun Jul 31 00:46:02 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba61a756 sys-apps/systemd: fix resolv.conf message Thanks to novns in #gentoo-systemd. sys-apps/systemd/systemd-231.ebuild | 2 +- sys-apps/systemd/systemd-9999.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-apps/systemd/systemd-231.ebuild b/sys-apps/systemd/systemd-231.ebuild index 3516936..b4f2613 100644 --- a/sys-apps/systemd/systemd-231.ebuild +++ b/sys-apps/systemd/systemd-231.ebuild @@ -434,7 +434,7 @@ pkg_postinst() { if [[ $(readlink "${ROOT}"etc/resolv.conf) == */run/systemd/* ]]; then ewarn "You should replace the resolv.conf symlink:" - ewarn "ln -snf ${ROOTPREFIX}/lib/systemd ${ROOT}etc/resolv.conf" + ewarn "ln -snf ${ROOTPREFIX-/usr}/lib/systemd/resolv.conf ${ROOT}etc/resolv.conf" fi } diff --git a/sys-apps/systemd/systemd-9999.ebuild b/sys-apps/systemd/systemd-9999.ebuild index 3516936..b4f2613 100644 --- a/sys-apps/systemd/systemd-9999.ebuild +++ b/sys-apps/systemd/systemd-9999.ebuild @@ -434,7 +434,7 @@ pkg_postinst() { if [[ $(readlink "${ROOT}"etc/resolv.conf) == */run/systemd/* ]]; then ewarn "You should replace the resolv.conf symlink:" - ewarn "ln -snf ${ROOTPREFIX}/lib/systemd ${ROOT}etc/resolv.conf" + ewarn "ln -snf ${ROOTPREFIX-/usr}/lib/systemd/resolv.conf ${ROOT}etc/resolv.conf" fi }