From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 99DD91388BF for ; Thu, 14 Jan 2016 17:33:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BC81FE0814; Thu, 14 Jan 2016 17:33:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 198D5E0814 for ; Thu, 14 Jan 2016 17:33:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E942F340B0C for ; Thu, 14 Jan 2016 17:33:27 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 43A22E6C for ; Thu, 14 Jan 2016 17:33:25 +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: <1452792564.6da0abc0850dfc99df0ba50cbd0092929ec0107b.williamh@OpenRC> 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: 6da0abc0850dfc99df0ba50cbd0092929ec0107b X-VCS-Branch: master Date: Thu, 14 Jan 2016 17:33:25 +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: aba6bfea-f80a-43fa-b136-7a4af28172db X-Archives-Hash: 298b908b55ad844c06c509a828ae79e9 commit: 6da0abc0850dfc99df0ba50cbd0092929ec0107b Author: William Hubbs gmail com> AuthorDate: Thu Jan 14 16:53:03 2016 +0000 Commit: William Hubbs gentoo org> CommitDate: Thu Jan 14 17:29:24 2016 +0000 URL: https://gitweb.gentoo.org/proj/openrc.git/commit/?id=6da0abc0 fix selinux build X-Gentoo-Bug: 571798 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=571798 src/rc/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/rc/Makefile b/src/rc/Makefile index da1e5ee..ed0733e 100644 --- a/src/rc/Makefile +++ b/src/rc/Makefile @@ -105,12 +105,12 @@ mountinfo: mountinfo.o _usage.o rc-misc.o ${CC} ${LOCAL_CFLAGS} ${LOCAL_LDFLAGS} ${CFLAGS} ${LDFLAGS} -o $@ $^ ${LDADD} openrc rc: rc.o rc-logger.o rc-misc.o rc-plugin.o _usage.o -ifeq (${MKSELINUX},yes) -openrc rc: rc-selinux.o -endif ${CC} ${LOCAL_CFLAGS} ${LOCAL_LDFLAGS} ${CFLAGS} ${LDFLAGS} -o $@ $^ ${LDADD} openrc-run runscript: openrc-run.o _usage.o rc-misc.o rc-plugin.o +ifeq (${MKSELINUX},yes) +openrc-run runscript: rc-selinux.o +endif ${CC} ${LOCAL_CFLAGS} ${LOCAL_LDFLAGS} ${CFLAGS} ${LDFLAGS} -o $@ $^ ${LDADD} rc-abort: rc-abort.o