diff options
author | Dylan Baker <[email protected]> | 2018-12-11 11:09:21 -0800 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2018-12-11 11:09:21 -0800 |
commit | 116f0fb216cd175e4d2a3324443dca034b973f28 (patch) | |
tree | b1f5f8ee5de0bf7633d4e41988290f15650d0a35 /.travis.yml | |
parent | ecf96413bb517c8a6b5ea1bee969d18e4d888ff6 (diff) |
travis: Don't try to read libdrm out of configure.ac
Since we're going to delete it shortly
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/.travis.yml b/.travis.yml index c398ebc748a..3c34942cadb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,7 +15,7 @@ env: - GLPROTO_VERSION=glproto-1.4.17 - DRI2PROTO_VERSION=dri2proto-2.8 - LIBPCIACCESS_VERSION=libpciaccess-0.13.4 - - LIBDRM_VERSION=libdrm-2.4.74 + - LIBDRM_VERSION=libdrm-2.4.95 - XCBPROTO_VERSION=xcb-proto-1.13 - RANDRPROTO_VERSION=randrproto-1.3.0 - LIBXRANDR_VERSION=libXrandr-1.3.0 @@ -505,16 +505,6 @@ install: pip2 install --user mako; fi - # Since libdrm gets updated in configure.ac regularly, try to pick up the - # latest version from there. - - for line in `grep "^LIBDRM.*_REQUIRED=" configure.ac`; do - old_ver=`echo $LIBDRM_VERSION | sed 's/libdrm-//'`; - new_ver=`echo $line | sed 's/.*REQUIRED=//'`; - if `echo "$old_ver,$new_ver" | tr ',' '\n' | sort -Vc 2> /dev/null`; then - export LIBDRM_VERSION="libdrm-$new_ver"; - fi; - done - # Install dependencies where we require specific versions (or where # disallowed by Travis CI's package whitelisting). |