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
This commit is contained in:
Ingo Weinhold
2004-08-25 19:44:53 +00:00
parent 7fdfbc9850
commit 187bee4d77
+2 -2
View File
@@ -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 = <keymap>$(keymapFile:B) ;
MkKeymapComp $(binary) : $(keymapFile) ;
}