Fix indentation with tabs (#554)

pull/558/head
Paul Philippov 2022-11-15 00:57:28 -05:00 committed by GitHub
parent 381cdacf6c
commit 9ae6bf5e33
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
ifneq ($(PLATFORM),) ifneq ($(PLATFORM),)
PLATFORM := $(error Setting PLATFORM in make arguments is deprecated, please remove it) PLATFORM := $(error Setting PLATFORM in make arguments is deprecated, please remove it)
else else
ifneq ($(BOARD),) ifneq ($(BOARD),)
FULL_PATH := $(shell find br-ext-chip-* -name "$(BOARD)*_defconfig") FULL_PATH := $(shell find br-ext-chip-* -name "$(BOARD)*_defconfig")
ifeq ($(FULL_PATH),) ifeq ($(FULL_PATH),)
FULL_PATH := $(error Cannot find anything for $(BOARD)) FULL_PATH := $(error Cannot find anything for $(BOARD))
@ -15,7 +15,7 @@ else
ifeq ($(FAMILY),hi3516cv500) ifeq ($(FAMILY),hi3516cv500)
BR_VER ?= 2022.08 BR_VER ?= 2022.08
endif endif
endif endif
endif endif
ROOT_DIR := $(CURDIR) ROOT_DIR := $(CURDIR)