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.")
|
||||
endif
|
||||
|
||||
include rusefi_rules.mk
|
||||
|
||||
# Define project name here
|
||||
PROJECT = rusefi
|
||||
PROJECT_DIR = .
|
||||
|
@ -201,6 +199,9 @@ endif
|
|||
endif
|
||||
DDEFS += -DSHORT_BOARD_NAME=$(SHORT_BOARD_NAME)
|
||||
|
||||
# should be after 'board.mk'
|
||||
include rusefi_rules.mk
|
||||
|
||||
# Include various ChibiOS mk files
|
||||
# Licensing files.
|
||||
include $(CHIBIOS)/os/license/license.mk
|
||||
|
|
Loading…
Reference in New Issue