From 04379b2de9cf447e793294c4fe3f0d9b70194ffe Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Mon, 7 Feb 2011 02:25:00 -0600 Subject: 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 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3