From 5abb66dfcb52c43b361093a83eef0182557cd2b0 Mon Sep 17 00:00:00 2001 From: Pavel Roskin Date: Sat, 24 Dec 2016 20:13:20 -0800 Subject: [PATCH] bootstrap: checkout submodules if they are missing --- bootstrap | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/bootstrap b/bootstrap index be61972e..a6105448 100755 --- a/bootstrap +++ b/bootstrap @@ -28,4 +28,14 @@ then exit 1 fi +if ! test -f libpainter/configure.ac +then + git submodule update --init libpainter +fi + +if ! test -f librfxcodec/configure.ac +then + git submodule update --init librfxcodec +fi + autoreconf -fvi