From f29aa1e27cb87a55fe36ad758d35fee0e3a25b09 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Astor?= Date: Sun, 1 May 2022 11:49:01 +0200 Subject: [PATCH] :wrench: check for submodules --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index b2f29edc..9fa8b986 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,9 @@ GWION_PACKAGE=gwion +ifeq (,$(wildcard util/config.mk.orig)) + $(warning "missing git submodules, please run:") + $(error "git submodules update --init --recursive") +endif ifeq (,$(wildcard util/config.mk)) $(shell cp util/config.mk.orig util/config.mk) endif -- 2.43.0