diff options
author | Eric Anholt <[email protected]> | 2018-06-05 08:18:51 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2018-06-08 09:50:28 -0700 |
commit | 3db39d84d2fed42e2324e6f9b5c75f56a7baa767 (patch) | |
tree | 61a9cb8f4c649b6d7e28a63f6c19533c5c175646 /.travis.yml | |
parent | 37eb56d239986e2e7ca1c87d08fd357378a3a06e (diff) |
travis: Do our automake build tests with srcdir != builddir.
This will catch many automake bugs that end-users get to experience first,
otherwise.
Reviewed-by: Eric Engestrom <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index ae28e63efb8..b367bd74d92 100644 --- a/.travis.yml +++ b/.travis.yml @@ -591,7 +591,9 @@ script: export CFLAGS="$CFLAGS -isystem`pwd`"; - ./autogen.sh --enable-debug + mkdir build && + cd build && + ../autogen.sh --enable-debug $LIBUNWIND_FLAGS $DRI_LOADERS --with-dri-drivers=$DRI_DRIVERS |