osmith has submitted this change. ( https://gerrit.osmocom.org/c/osmo-asf4-dfu/+/39786?usp=email )
Change subject: gcc/Makefile: fail early if xxd is not installed ......................................................................
gcc/Makefile: fail early if xxd is not installed
Since aaec8734 ("add fw update crcstub") the xxd program is required for running the Makefile.
Change-Id: I6a3e7021929ba58c14f1ffced5702d2dfa839ebe --- M gcc/Makefile 1 file changed, 4 insertions(+), 0 deletions(-)
Approvals: laforge: Looks good to me, approved fixeria: Looks good to me, but someone else must approve Jenkins Builder: Verified
diff --git a/gcc/Makefile b/gcc/Makefile index b5d3cf0..27a9143 100644 --- a/gcc/Makefile +++ b/gcc/Makefile @@ -13,6 +13,10 @@
MK_DIR = mkdir -p
+ifeq (, $(shell which xxd)) +$(error missing required program "xxd") +endif + OBJS += \ hal/src/hal_io.o \ hpl/core/hpl_core_m4.o \