From: Marek VavruĊĦa Date: Thu, 29 Jan 2015 16:19:35 +0000 (+0100) Subject: build: bootstrap script + cache for faster rebuilds X-Git-Tag: v1.0.0-beta1~345^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a0647c0c4e27ddf760929078fb097655f71ff06e;p=thirdparty%2Fknot-resolver.git build: bootstrap script + cache for faster rebuilds --- diff --git a/.travis.yml b/.travis.yml index 7a1b61814..68ae4f272 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,7 +13,7 @@ before_script: - pip install --user travis -r tests/pydnstest/requirements.txt - pip install --user travis cpp-coveralls script: - - autoreconf -i + - ./bootstrap - ./configure --enable-integration-tests --enable-code-coverage - make - make check @@ -25,3 +25,4 @@ cache: directories: - ${HOME}/fakeroot - ${HOME}/.pip-cache + - .autom4te.cache diff --git a/bootstrap b/bootstrap new file mode 100755 index 000000000..7380c307e --- /dev/null +++ b/bootstrap @@ -0,0 +1,7 @@ +#!/bin/sh +set -e +aclocal -I m4 --install +libtoolize --copy +autoheader +automake --copy --add-missing +autoconf