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 7A3B6138A64 for ; Fri, 15 Feb 2013 22:17:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 56F50E043A; Fri, 15 Feb 2013 22:17:49 +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 DB4FAE043A for ; Fri, 15 Feb 2013 22:17:48 +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 C74E733D77F for ; Fri, 15 Feb 2013 22:17:47 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 02312E4073 for ; Fri, 15 Feb 2013 22:17:44 +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: <1360966189.86dbd757e94fe5402efea03f9f8725a71533297a.WilliamH@OpenRC> Subject: [gentoo-commits] proj/openrc:master commit in: init.d/ X-VCS-Repository: proj/openrc X-VCS-Files: init.d/keymaps.in X-VCS-Directories: init.d/ X-VCS-Committer: WilliamH X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 86dbd757e94fe5402efea03f9f8725a71533297a X-VCS-Branch: master Date: Fri, 15 Feb 2013 22:17:44 +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: 8780a2df-7b56-442e-a00b-114d7888932d X-Archives-Hash: cd15e2c7568dbc5468919c39831e3f73 commit: 86dbd757e94fe5402efea03f9f8725a71533297a Author: William Hubbs gmail com> AuthorDate: Fri Feb 15 22:09:49 2013 +0000 Commit: William Hubbs gentoo org> CommitDate: Fri Feb 15 22:09:49 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/openrc.git;a=commit;h=86dbd757 keymaps: fix the use of loadkeys in the euro fix The loadkeys man page states that if you don't pass a filename loadkeys will read from stdin. However, this is not correct, so we now pass "-" as the filename to explicitly request stdin. Reported-by: andi grois.info X-Gentoo-Bug: 457524 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=457524 --- init.d/keymaps.in | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/init.d/keymaps.in b/init.d/keymaps.in index a55a0e0..5889268 100644 --- a/init.d/keymaps.in +++ b/init.d/keymaps.in @@ -58,7 +58,7 @@ start() if yesno $fix_euro; then ebegin "Fixing font for euro symbol" # Fix some fonts displaying the Euro, #173528. - echo "altgr keycode 18 = U+20AC" | loadkeys -q + echo "altgr keycode 18 = U+20AC" | loadkeys -q - eend $? fi