aboutsummaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap8
1 files changed, 4 insertions, 4 deletions
diff --git a/bootstrap b/bootstrap
index df0e58dda..8fc4c4426 100755
--- a/bootstrap
+++ b/bootstrap
@@ -97,15 +97,15 @@ submodules()
97 if ! git --version >/dev/null; then 97 if ! git --version >/dev/null; then
98 echo "git not installed, skipping submodule update" 98 echo "git not installed, skipping submodule update"
99 else 99 else
100 git submodule update --init || true 100 git submodule update --init || exit 1
101 git submodule update --recursive || true 101 git submodule update --recursive || exit 1
102 git submodule sync || true 102 git submodule sync || exit 1
103 fi 103 fi
104} 104}
105 105
106init_buildcommon_include() 106init_buildcommon_include()
107{ 107{
108 cp contrib/build-common/Makefile.inc contrib/Makefile.inc || true 108 cp contrib/build-common/Makefile.inc contrib/Makefile.inc || exit 1
109} 109}
110 110
111main() 111main()