summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn Estabrook <jestabro@vyos.io>2025-03-27 13:32:33 -0500
committerJohn Estabrook <jestabro@vyos.io>2025-03-27 15:22:56 -0500
commit856ab11067957b34a98133075eaff5da3c19b9bd (patch)
tree591bea204fb8465d67eb8276e11ceb8246f96301 /Makefile
parente4d0f284ff3f65f296fb74bf7b30105401d3e4b2 (diff)
downloadvyos-1x-856ab11067957b34a98133075eaff5da3c19b9bd.tar.gz
vyos-1x-856ab11067957b34a98133075eaff5da3c19b9bd.zip
T7289: attempt to update submodule if status inconsistent
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index b78bedebd..aa113d9ce 100644
--- a/Makefile
+++ b/Makefile
@@ -9,6 +9,7 @@ BUILD_ARCH := $(shell dpkg-architecture -q DEB_BUILD_ARCH)
J2LINT := $(shell command -v j2lint 2> /dev/null)
PYLINT_FILES := $(shell git ls-files *.py src/migration-scripts)
LIBVYOSCONFIG_BUILD_PATH := /tmp/libvyosconfig/_build/libvyosconfig.so
+LIBVYOSCONFIG_STATUS := $(shell git submodule status)
config_xml_src = $(wildcard interface-definitions/*.xml.in)
config_xml_obj = $(config_xml_src:.xml.in=.xml)
@@ -24,6 +25,9 @@ op_xml_obj = $(op_xml_src:.xml.in=.xml)
.ONESHELL:
libvyosconfig:
if test ! -f $(LIBVYOSCONFIG_BUILD_PATH); then
+ if ! echo $(firstword $(LIBVYOSCONFIG_STATUS))|grep -Eq '^[0-9]'; then
+ git submodule sync; git submodule update --init --remote
+ fi
rm -rf /tmp/libvyosconfig && mkdir /tmp/libvyosconfig
cp -r libvyosconfig /tmp && cd /tmp/libvyosconfig && \
eval $$(opam env --root=/opt/opam --set-root) && ./build.sh || exit 1