From 187bee4d7774db81222e1f680def129ae31f4562 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Wed, 25 Aug 2004 19:44:53 +0000 Subject: [PATCH] Small change for correctness and to avoid name clashes. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8656 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/bin/keymap/Jamfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/apps/bin/keymap/Jamfile b/src/apps/bin/keymap/Jamfile index 18129e60b2..a25e06a8f7 100644 --- a/src/apps/bin/keymap/Jamfile +++ b/src/apps/bin/keymap/Jamfile @@ -28,7 +28,7 @@ local keymapFiles = [ GLOB $(SUBDIR) : *.keymap ] ; # generate the binary file for the keymap files local keymapFile ; -for keymapFile in [ FGristFiles $(keymapFiles) ] { - local binary = $(keymapFile:B) ; +for keymapFile in [ FGristFiles $(keymapFiles:D=) ] { + local binary = $(keymapFile:B) ; MkKeymapComp $(binary) : $(keymapFile) ; }