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 A2324139694 for ; Mon, 12 Jun 2017 23:01:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 58ED821C054; Mon, 12 Jun 2017 23:01:50 +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 396E021C054 for ; Mon, 12 Jun 2017 23:01:50 +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 12A5C3419E8 for ; Mon, 12 Jun 2017 23:01:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1FA8E7467 for ; Mon, 12 Jun 2017 23:01:47 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1497287570.2f81c100afdf45ebf787dfc5d3261aa6055640e4.williamh@OpenRC> Subject: [gentoo-commits] proj/openrc:master commit in: scripts/ X-VCS-Repository: proj/openrc X-VCS-Files: scripts/Makefile X-VCS-Directories: scripts/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 2f81c100afdf45ebf787dfc5d3261aa6055640e4 X-VCS-Branch: master Date: Mon, 12 Jun 2017 23:01:47 +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: cfa0ceca-77f9-4750-95c2-9f26982641e8 X-Archives-Hash: ecba4e80ea6b70a6f9a7c13a2df6e8c0 commit: 2f81c100afdf45ebf787dfc5d3261aa6055640e4 Author: William Hubbs gmail com> AuthorDate: Mon Jun 12 17:12:50 2017 +0000 Commit: William Hubbs gentoo org> CommitDate: Mon Jun 12 17:12:50 2017 +0000 URL: https://gitweb.gentoo.org/proj/openrc.git/commit/?id=2f81c100 Fix link to shutdown for MKSYSVINIT=yes scripts/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Makefile b/scripts/Makefile index b0af29a9..d2215b34 100644 --- a/scripts/Makefile +++ b/scripts/Makefile @@ -22,7 +22,7 @@ ifeq (${MKSYSVINIT},yes) ln -sf ${DIR}/halt ${DESTDIR}/${SBINDIR}/halt ln -sf ${DIR}/poweroff ${DESTDIR}/${SBINDIR}/poweroff ln -sf ${DIR}/reboot ${DESTDIR}/${SBINDIR}/reboot - ln -sf openrc-shutdown ${DESTDIR}/${SBINDIR}/shutdown + ln -sf ${DIR}/shutdown ${DESTDIR}/${SBINDIR}/shutdown ln -sf openrc-init ${DESTDIR}/${SBINDIR}/init endif endif