Gentoo Archives: gentoo-commits

From: William Hubbs <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/openrc:master commit in: src/rc/
Date: Mon, 07 Feb 2011 08:31:01
Message-Id: 04379b2de9cf447e793294c4fe3f0d9b70194ffe.williamH@gentoo
1 commit: 04379b2de9cf447e793294c4fe3f0d9b70194ffe
2 Author: William Hubbs <w.d.hubbs <AT> gmail <DOT> com>
3 AuthorDate: Mon Feb 7 08:25:00 2011 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 7 08:25:00 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/openrc.git;a=commit;h=04379b2d
7
8 fix symlink target
9
10 The target for the symlinks in ${SBINDIR} (the same directory as the rc
11 binary) was "rc". This is not correct; the target should be
12 ${SBINDIR}/rc instead.
13
14 ---
15 src/rc/Makefile | 2 +-
16 1 files changed, 1 insertions(+), 1 deletions(-)
17
18 diff --git a/src/rc/Makefile b/src/rc/Makefile
19 index cf63cca..5397415 100644
20 --- a/src/rc/Makefile
21 +++ b/src/rc/Makefile
22 @@ -79,7 +79,7 @@ install: all
23 ${INSTALL} -d ${DESTDIR}${BINDIR}
24 $(call make-links,${BINLINKS},${SBINDIR}/${PROG},${DESTDIR}${BINDIR})
25 ${INSTALL} -d ${DESTDIR}${SBINDIR}
26 - $(call make-links,${SBINLINKS},${PROG},${DESTDIR}${SBINDIR})
27 + $(call make-links,${SBINLINKS},${SBINDIR}/${PROG},${DESTDIR}${SBINDIR})
28 ${INSTALL} -d ${DESTDIR}${LINKDIR}/bin
29 $(call make-links,${RC_BINLINKS},${SBINDIR}/${PROG},${DESTDIR}${LINKDIR}/bin)
30 ${INSTALL} -d ${DESTDIR}${LINKDIR}/sbin