From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49792) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dVS50-0005Kw-Br for guix-patches@gnu.org; Wed, 12 Jul 2017 20:34:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dVS4x-0006Vk-8i for guix-patches@gnu.org; Wed, 12 Jul 2017 20:34:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:33280) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dVS4x-0006VU-59 for guix-patches@gnu.org; Wed, 12 Jul 2017 20:34:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dVS4w-0003FX-JI for guix-patches@gnu.org; Wed, 12 Jul 2017 20:34:02 -0400 Subject: [bug#27675] [PATCH] gnu: kbd: Recursively search $LOADKEYS_KEYMAP_PATH. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49426) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dVS3y-0004Rh-73 for guix-patches@gnu.org; Wed, 12 Jul 2017 20:33:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dVS3v-0005ky-4N for guix-patches@gnu.org; Wed, 12 Jul 2017 20:33:02 -0400 Received: from tobias.gr ([51.15.135.5]:40626) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dVS3u-0005h0-Pp for guix-patches@gnu.org; Wed, 12 Jul 2017 20:32:59 -0400 Received: by tobias.gr (OpenSMTPD) with ESMTP id ed825e2b for ; Thu, 13 Jul 2017 00:32:53 +0000 (UTC) Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id 0ff72552 (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128:NO) for ; Thu, 13 Jul 2017 00:32:52 +0000 (UTC) From: Tobias Geerinckx-Rice Date: Thu, 13 Jul 2017 02:34:25 +0200 Message-Id: <20170713003425.31282-1-me@tobias.gr> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 27675@debbugs.gnu.org Fix a regression since commit fd7000fe33d3c4188c241cab97e2b891dd4e1268. * gnu/packages/linux.scm (kbd)[native-search-path]: Add a double asterisk. --- gnu/packages/linux.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index c5fed1a7c..700408cc8 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -1837,7 +1837,10 @@ system.") (native-search-paths (list (search-path-specification (variable "LOADKEYS_KEYMAP_PATH") - (files (list "share/keymaps"))))) + ;; Append ‘/**’ to recursively search all directories. One can then + ;; run (for example) ‘loadkeys en-latin9’ instead of having to find + ;; and type ‘i386/colemak/en-latin9’ on an unfamiliar keyboard. + (files (list "share/keymaps/**"))))) (native-inputs `(("pkg-config" ,pkg-config))) (home-page "http://kbd-project.org/") (synopsis "Linux keyboard utilities and keyboard maps") -- 2.13.1