osmith has uploaded this change for review. ( 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(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-asf4-dfu refs/changes/86/39786/1
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 \