diff options
author | Zach White <skullydazed@gmail.com> | 2021-05-21 16:59:10 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-21 16:59:10 -0700 |
commit | 4c0d8ae8d77a76857abf4befc13d8f6c969c52e0 (patch) | |
tree | 9c7bef9b269be9becd920014a6eaca2ef4fc4468 /lib/python/qmk | |
parent | de8fada3a3635f0fc6f1509ea2c0ac53ee880cf5 (diff) | |
download | qmk_firmware-4c0d8ae8d77a76857abf4befc13d8f6c969c52e0.tar.gz qmk_firmware-4c0d8ae8d77a76857abf4befc13d8f6c969c52e0.zip |
ensure we do not conflict with existing keymap aliases (#12976)
Diffstat (limited to 'lib/python/qmk')
-rwxr-xr-x | lib/python/qmk/cli/generate/layouts.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/python/qmk/cli/generate/layouts.py b/lib/python/qmk/cli/generate/layouts.py index ad6946d6cf..4de982f822 100755 --- a/lib/python/qmk/cli/generate/layouts.py +++ b/lib/python/qmk/cli/generate/layouts.py @@ -85,7 +85,9 @@ def generate_layouts(cli): for alias, target in kb_info_json.get('layout_aliases', {}).items(): layouts_h_lines.append('') - layouts_h_lines.append('#define %s %s' % (alias, target)) + layouts_h_lines.append(f'#ifndef {alias}') + layouts_h_lines.append(f'# define {alias} {target}') + layouts_h_lines.append('#endif') # Show the results layouts_h = '\n'.join(layouts_h_lines) + '\n' |