diff options
author | Lennart Poettering <lennart@poettering.net> | 2011-12-31 18:06:44 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-12-31 18:06:56 +0100 |
commit | c47ac9992f3274597802cde47922bb9809185eaf (patch) | |
tree | 9d687a9a09ae4e09cbc2ee5fa1bf2a9652582e1a | |
parent | be5f4385d61d512f0c3c75b70df9f77eac2b8331 (diff) |
build-sys: fix mageia kbd mappings
-rw-r--r-- | Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am index 99ccca47f7..515e1ff73c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -134,16 +134,16 @@ AM_CPPFLAGS += \ -DKBD_SETFONT=\"/usr/bin/setfont\" \ -DDEFAULT_FONT=\"LatArCyrHeb-16\" else +if TARGET_MAGEIA AM_CPPFLAGS += \ -DKBD_LOADKEYS=\"/bin/loadkeys\" \ -DKBD_SETFONT=\"/bin/setfont\" \ - -DDEFAULT_FONT=\"latarcyrheb-sun16\" + -DDEFAULT_FONT=\"LatArCyrHeb-16\" else -if TARGET_MAGEIA AM_CPPFLAGS += \ -DKBD_LOADKEYS=\"/bin/loadkeys\" \ -DKBD_SETFONT=\"/bin/setfont\" \ - -DDEFAULT_FONT=\"LatArCyrHeb-16\" + -DDEFAULT_FONT=\"latarcyrheb-sun16\" endif endif endif |