From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1PmMUt-00023A-OT for garchives@archives.gentoo.org; Mon, 07 Feb 2011 08:31:01 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2BCF3E0827; Mon, 7 Feb 2011 08:30:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id F1015E0827 for ; Mon, 7 Feb 2011 08:30:51 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8760C1B4135 for ; Mon, 7 Feb 2011 08:30:51 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id E41678006A for ; Mon, 7 Feb 2011 08:30:50 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <04379b2de9cf447e793294c4fe3f0d9b70194ffe.williamH@gentoo> Subject: [gentoo-commits] proj/openrc:master commit in: src/rc/ X-VCS-Repository: proj/openrc X-VCS-Files: src/rc/Makefile X-VCS-Directories: src/rc/ X-VCS-Committer: williamH X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 04379b2de9cf447e793294c4fe3f0d9b70194ffe Date: Mon, 7 Feb 2011 08:30:50 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: c139c1d2c4e75c06ba899fd206a9612d commit: 04379b2de9cf447e793294c4fe3f0d9b70194ffe Author: William Hubbs gmail com> AuthorDate: Mon Feb 7 08:25:00 2011 +0000 Commit: William Hubbs gentoo org> CommitDate: Mon Feb 7 08:25:00 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/openrc.git;a=3D= commit;h=3D04379b2d fix symlink target The target for the symlinks in ${SBINDIR} (the same directory as the rc binary) was "rc". This is not correct; the target should be ${SBINDIR}/rc instead. --- src/rc/Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/rc/Makefile b/src/rc/Makefile index cf63cca..5397415 100644 --- a/src/rc/Makefile +++ b/src/rc/Makefile @@ -79,7 +79,7 @@ install: all ${INSTALL} -d ${DESTDIR}${BINDIR} $(call make-links,${BINLINKS},${SBINDIR}/${PROG},${DESTDIR}${BINDIR}) ${INSTALL} -d ${DESTDIR}${SBINDIR} - $(call make-links,${SBINLINKS},${PROG},${DESTDIR}${SBINDIR}) + $(call make-links,${SBINLINKS},${SBINDIR}/${PROG},${DESTDIR}${SBINDIR}) ${INSTALL} -d ${DESTDIR}${LINKDIR}/bin $(call make-links,${RC_BINLINKS},${SBINDIR}/${PROG},${DESTDIR}${LINKDIR= }/bin) ${INSTALL} -d ${DESTDIR}${LINKDIR}/sbin