1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
From: Gwen Weinholt <weinholt@debian.org>
Date: Sun, 24 Dec 2023 15:46:23 +0100
Subject: Skip git submodule checks when --as-is is used
configure | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure b/configure
index 2b4b594..151aefd 100755
@@ -878,7 +878,6 @@ if [ "$skipSubmoduleUpdate" != "yes" ] ; then
if [ -d '.git' ] && command -v git >/dev/null 2>&1 ; then
git submodule update --init --depth 1
fi
-fi
submod_instructions () {
echo $1
@@ -912,6 +911,7 @@ fi
if [ ! -f "$srcdir"/stex/Mf-stex ] ; then
submod_instructions 'Source in "stex" is missing'
fi
+fi
# more compile and link flags for c/Mf-unix and mats/Mf-unix
mdinclude=
|