Browse Source

Merge "fix(st): remove extra chars from dtc version" into integration

pull/1985/head
Manish Pandey 3 years ago
committed by TrustedFirmware Code Review
parent
commit
1bbe2135c3
  1. 2
      plat/st/stm32mp1/platform.mk

2
plat/st/stm32mp1/platform.mk

@ -146,7 +146,7 @@ endif
endif
$(eval DTC_V = $(shell $(DTC) -v | awk '{print $$NF}'))
$(eval DTC_VERSION = $(shell printf "%d" $(shell echo ${DTC_V} | cut -d- -f1 | sed "s/\./0/g")))
$(eval DTC_VERSION = $(shell printf "%d" $(shell echo ${DTC_V} | cut -d- -f1 | sed "s/\./0/g" | grep -o [0-9]*)))
DTC_CPPFLAGS += ${INCLUDES}
DTC_FLAGS += -Wno-unit_address_vs_reg
ifeq ($(shell test $(DTC_VERSION) -ge 10601; echo $$?),0)

Loading…
Cancel
Save