diff options
author | Nick Brassel <nick@tzarc.org> | 2021-07-31 10:34:14 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-31 10:34:14 +1000 |
commit | a4c050b5ae30bd21be4a4bad596f1275a6d16bfc (patch) | |
tree | 4f071db988a35a5343cecc72027284b54013b96a | |
parent | b459f314ec3e75d44aa6192bdbdf279041fe5c17 (diff) | |
download | qmk_firmware-a4c050b5ae30bd21be4a4bad596f1275a6d16bfc.tar.gz qmk_firmware-a4c050b5ae30bd21be4a4bad596f1275a6d16bfc.zip |
Fix up paths for bioi boards - parallel compilation failures due to file collisions. (#13806)
-rw-r--r-- | keyboards/bioi/g60/rules.mk | 6 | ||||
-rw-r--r-- | keyboards/bioi/morgan65/rules.mk | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/keyboards/bioi/g60/rules.mk b/keyboards/bioi/g60/rules.mk index a7e616d4d1..dc1a000f33 100644 --- a/keyboards/bioi/g60/rules.mk +++ b/keyboards/bioi/g60/rules.mk @@ -7,9 +7,9 @@ F_CPU = 8000000 # Bootloader selection BOOTLOADER = qmk-dfu -SRC += ../usart.c \ - ../ble.c \ - ../main.c +SRC += usart.c \ + ble.c \ + main.c OPT_DEFS += -DPROTOCOL_BLE OPT_DEFS += -DUART_RX1_BUFFER_SIZE=16 -DUART_TX1_BUFFER_SIZE=16 diff --git a/keyboards/bioi/morgan65/rules.mk b/keyboards/bioi/morgan65/rules.mk index a7e616d4d1..dc1a000f33 100644 --- a/keyboards/bioi/morgan65/rules.mk +++ b/keyboards/bioi/morgan65/rules.mk @@ -7,9 +7,9 @@ F_CPU = 8000000 # Bootloader selection BOOTLOADER = qmk-dfu -SRC += ../usart.c \ - ../ble.c \ - ../main.c +SRC += usart.c \ + ble.c \ + main.c OPT_DEFS += -DPROTOCOL_BLE OPT_DEFS += -DUART_RX1_BUFFER_SIZE=16 -DUART_TX1_BUFFER_SIZE=16 |