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 C97A0139695 for ; Mon, 12 Jun 2017 15:41:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A583421C04E; Mon, 12 Jun 2017 15:41:52 +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 8059DE0EC3 for ; Mon, 12 Jun 2017 15:41:52 +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 5FA79341929 for ; Mon, 12 Jun 2017 15:41:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EBCAE7481 for ; Mon, 12 Jun 2017 15:41:49 +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: <1497281984.199a210d2fbc524c9c400a06f832dabffd7ed1b3.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: 199a210d2fbc524c9c400a06f832dabffd7ed1b3 X-VCS-Branch: master Date: Mon, 12 Jun 2017 15:41:49 +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: 1d7535ae-78e3-4bcb-87fe-3f2077bddb78 X-Archives-Hash: 76723081a723d3a6bfff46fbed826b90 commit: 199a210d2fbc524c9c400a06f832dabffd7ed1b3 Author: udeved manjaro org> AuthorDate: Fri Jun 9 21:03:20 2017 +0000 Commit: William Hubbs gentoo org> CommitDate: Mon Jun 12 15:39:44 2017 +0000 URL: https://gitweb.gentoo.org/proj/openrc.git/commit/?id=199a210d scripts/Makefile: make symlinks absolute instead of relative This closes #142. scripts/Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/Makefile b/scripts/Makefile index 5cca07bc..b0af29a9 100644 --- a/scripts/Makefile +++ b/scripts/Makefile @@ -17,12 +17,12 @@ endif _installafter: ifeq (${OS},Linux) ${INSTALL} -d ${DESTDIR}${SBINDIR} - ln -sf ../${DIR}/rc-sstat ${DESTDIR}/${SBINDIR}/rc-sstat + ln -sf ${DIR}/rc-sstat ${DESTDIR}/${SBINDIR}/rc-sstat 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 ../${DIR}/shutdown ${DESTDIR}/${SBINDIR}/shutdown + 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 openrc-init ${DESTDIR}/${SBINDIR}/init endif endif