aboutsummaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap12
1 files changed, 6 insertions, 6 deletions
diff --git a/bootstrap b/bootstrap
index b4f5b4dc3..8fc4c4426 100755
--- a/bootstrap
+++ b/bootstrap
@@ -79,8 +79,8 @@ check_libtool()
79 existence libtoolize || \ 79 existence libtoolize || \
80 existence glibtoolize || \ 80 existence glibtoolize || \
81 existence slibtool; then 81 existence slibtool; then
82 autoreconf -if 82 autoreconf -if || exit 1
83 . "bin/pogen.sh" 83 . "bin/pogen.sh" || exit 1
84 else 84 else
85 echo "*** No libtoolize (libtool) or libtool found, please install it ***" >&2; 85 echo "*** No libtoolize (libtool) or libtool found, please install it ***" >&2;
86 exit 1 86 exit 1
@@ -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()