On 25/09/20 09:11, Thomas Huth wrote: > Travis already has an environment variable that points to the top of > the checked-out source code, TRAVIS_BUILD_DIR. We can use it to avoid > the guessing of the right location of the configure script. > > Signed-off-by: Thomas Huth <thuth@xxxxxxxxxx> > --- > .travis.yml | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/.travis.yml b/.travis.yml > index 3bc05ce..e9c18e4 100644 > --- a/.travis.yml > +++ b/.travis.yml > @@ -175,8 +175,7 @@ before_script: > sudo chmod g+s /usr/bin/qemu-system-* ; > fi > - mkdir -p $BUILD_DIR && cd $BUILD_DIR > - - if [ -e ./configure ]; then ./configure $CONFIG ; fi > - - if [ -e ../configure ]; then ../configure $CONFIG ; fi > + - $TRAVIS_BUILD_DIR/configure $CONFIG > script: > - make -j3 > - ACCEL="${ACCEL:-tcg}" ./run_tests.sh -v $TESTS | tee results.txt > Applied, thanks. Paolo