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 4613A138AA2 for ; Sun, 17 Feb 2013 02:49:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E421F21C009; Sun, 17 Feb 2013 02:49:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4B1C521C005 for ; Sun, 17 Feb 2013 02:49:17 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 603FC33DB66 for ; Sun, 17 Feb 2013 02:49:16 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 4D26CE408F for ; Sun, 17 Feb 2013 02:49:14 +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: <1361069194.89bb04a01a2d0b71c56c918961f32fe8e80d8234.WilliamH@OpenRC> Subject: [gentoo-commits] proj/openrc:master commit in: init.d/ X-VCS-Repository: proj/openrc X-VCS-Files: init.d/procfs.in X-VCS-Directories: init.d/ X-VCS-Committer: WilliamH X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 89bb04a01a2d0b71c56c918961f32fe8e80d8234 X-VCS-Branch: master Date: Sun, 17 Feb 2013 02:49:14 +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: ea3c99d1-a980-4bd8-b20c-dd7d5b95ec24 X-Archives-Hash: 5766b5ece0f8289e8cc2a2167f262237 commit: 89bb04a01a2d0b71c56c918961f32fe8e80d8234 Author: Andrew Gregory gmail com> AuthorDate: Tue Feb 12 03:13:30 2013 +0000 Commit: William Hubbs gentoo org> CommitDate: Sun Feb 17 02:46:34 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/openrc.git;a=commit;h=89bb04a0 do not use SYSCONFDIR for binfmt.d This makes binfmt.d consistent with tmpfiles.d and systemd which uses hard coded paths for both. Signed-off-by: Andrew Gregory gmail.com> --- init.d/procfs.in | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/init.d/procfs.in b/init.d/procfs.in index 992567e..7b7c6e6 100644 --- a/init.d/procfs.in +++ b/init.d/procfs.in @@ -31,7 +31,7 @@ start() ebegin "Loading custom binary format handlers" fmts=$(grep -hsv -e '^[#;]' -e '^[[:space:]]*$' \ /run/binfmt.d/*.conf \ - @SYSCONFDIR@/binfmt.d/*.conf \ + /etc/binfmt.d/*.conf \ ""/usr/lib/binfmt.d/*.conf) if [ -n "${fmts}" ]; then echo "${fmts}" > /proc/sys/fs/binfmt_misc/register