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 \
--
To view, visit
https://gerrit.osmocom.org/c/osmo-asf4-dfu/+/39786?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: merged
Gerrit-Project: osmo-asf4-dfu
Gerrit-Branch: master
Gerrit-Change-Id: I6a3e7021929ba58c14f1ffced5702d2dfa839ebe
Gerrit-Change-Number: 39786
Gerrit-PatchSet: 2
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>