diff options
author | Pavel Roskin <plroskin@gmail.com> | 2016-12-24 20:13:20 -0800 |
---|---|---|
committer | Pavel Roskin <plroskin@gmail.com> | 2016-12-28 21:22:29 -0800 |
commit | 5abb66dfcb52c43b361093a83eef0182557cd2b0 (patch) | |
tree | a8e863fcb790d6f5d32291cb3802e3fe858fabff | |
parent | d257108b92c5eae454c5eb0ede6a4bf6112d5ff4 (diff) | |
download | xrdp-proprietary-5abb66dfcb52c43b361093a83eef0182557cd2b0.tar.gz xrdp-proprietary-5abb66dfcb52c43b361093a83eef0182557cd2b0.zip |
bootstrap: checkout submodules if they are missing
-rwxr-xr-x | bootstrap | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -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 |