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 A6C1B138873 for ; Fri, 24 Oct 2014 16:02:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D3C01E0857; Fri, 24 Oct 2014 16:02:38 +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 51C1BE0869 for ; Fri, 24 Oct 2014 16:02:37 +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 4DB3A340436 for ; Fri, 24 Oct 2014 16:02:36 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 606F68A27 for ; Fri, 24 Oct 2014 16:02:33 +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: <1414166356.4777035d53cc56444865cbeb287e2b5e73d7e901.williamh@OpenRC> Subject: [gentoo-commits] proj/openrc:openrc-0.13.x commit in: src/librc/ X-VCS-Repository: proj/openrc X-VCS-Files: src/librc/rc.h.in X-VCS-Directories: src/librc/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 4777035d53cc56444865cbeb287e2b5e73d7e901 X-VCS-Branch: openrc-0.13.x Date: Fri, 24 Oct 2014 16:02:33 +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: e3623329-7f34-42c6-a01c-e7ca44c9174d X-Archives-Hash: 34e6b2c5fc35a570f6986fbfc6d9cde0 commit: 4777035d53cc56444865cbeb287e2b5e73d7e901 Author: Gabriele Giacone <1o5g4r8o gmail com> AuthorDate: Wed Oct 22 20:02:51 2014 +0000 Commit: William Hubbs gentoo org> CommitDate: Fri Oct 24 15:59:16 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/openrc.git;a=commit;h=4777035d Fix rc_svcdir for GNU/Hurd --- src/librc/rc.h.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/librc/rc.h.in b/src/librc/rc.h.in index 8f0e889..34f09f2 100644 --- a/src/librc/rc.h.in +++ b/src/librc/rc.h.in @@ -42,7 +42,7 @@ extern "C" { #define RC_LIBEXECDIR "@LIBEXECDIR@" #if defined(PREFIX) #define RC_SVCDIR RC_LIBEXECDIR "/init.d" -#elif defined(__linux__) || defined(__FreeBSD_kernel__) +#elif defined(__linux__) || defined(__FreeBSD_kernel__) || defined(__GNU__) #define RC_SVCDIR "/run/openrc" #else #define RC_SVCDIR RC_LIBEXECDIR "/init.d"