diff options
author | Daniel P. Berrangé <berrange@redhat.com> | 2019-01-09 16:31:09 +0000 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2019-01-14 14:52:30 +0000 |
commit | 45ebc239f3eeb8231e7fd237ffb4d4ea86cbca97 (patch) | |
tree | c3e1eec78332ab94b2103dec879dd7a51e162d2c /.travis.yml | |
parent | c21d7efc8bcd33db957958d75a9c0f5f93d62d77 (diff) |
travis: don't clone git submodules upfront
The configure script & Makefile are already capable of figuring out
which git submodules are required for a given build platform, and
cloning them at the right time.
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index f539f8b556..fa70429459 100644 --- a/.travis.yml +++ b/.travis.yml @@ -71,7 +71,6 @@ git: before_install: - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update ; fi - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install libffi gettext glib pixman ; fi - - git submodule update --init --recursive capstone dtc ui/keycodemapdb before_script: - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR} - ${SRC_DIR}/configure ${CONFIG} || { cat config.log && exit 1; } |