variable shadowing should be avoided #5676
This commit is contained in:
parent
8a5c8770d4
commit
aa0512f5f6
|
@ -42,8 +42,6 @@ ifneq ("$(wildcard $(../.git))","")
|
||||||
$(error "../.git not found. We expect source code to be cloned not downloaded as zip file.")
|
$(error "../.git not found. We expect source code to be cloned not downloaded as zip file.")
|
||||||
endif
|
endif
|
||||||
|
|
||||||
include rusefi_rules.mk
|
|
||||||
|
|
||||||
# Define project name here
|
# Define project name here
|
||||||
PROJECT = rusefi
|
PROJECT = rusefi
|
||||||
PROJECT_DIR = .
|
PROJECT_DIR = .
|
||||||
|
@ -201,6 +199,9 @@ endif
|
||||||
endif
|
endif
|
||||||
DDEFS += -DSHORT_BOARD_NAME=$(SHORT_BOARD_NAME)
|
DDEFS += -DSHORT_BOARD_NAME=$(SHORT_BOARD_NAME)
|
||||||
|
|
||||||
|
# should be after 'board.mk'
|
||||||
|
include rusefi_rules.mk
|
||||||
|
|
||||||
# Include various ChibiOS mk files
|
# Include various ChibiOS mk files
|
||||||
# Licensing files.
|
# Licensing files.
|
||||||
include $(CHIBIOS)/os/license/license.mk
|
include $(CHIBIOS)/os/license/license.mk
|
||||||
|
|
Loading…
Reference in New Issue