From 9605749f995b3a7b1d94d71994cdc57b9d0bfdff Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Thu, 25 Jul 2019 11:02:34 -0700 Subject: gitlab-ci: Set the prefix to ./install instead of the DESTDIR. If we don't set DESTDIR, then the DEFAULT_DRIVER_DIR built into the libraries is correct and we don't need to use LIBGL_DRIVERS_PATH and friends for CI usage. Incidentally, this moves our installed paths from /builds/anholt/mesa/install/usr/local/lib (for example) to /builds/anholt/mesa/install/lib for simplicity. Reviewed-by: Eric Engestrom --- .gitlab-ci/meson-build.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to '.gitlab-ci/meson-build.sh') diff --git a/.gitlab-ci/meson-build.sh b/.gitlab-ci/meson-build.sh index d0df91fa394..42aed0e91c5 100755 --- a/.gitlab-ci/meson-build.sh +++ b/.gitlab-ci/meson-build.sh @@ -17,6 +17,7 @@ fi rm -rf _build meson _build --native-file=native.file \ ${CROSS+--cross /cross_file-$CROSS.txt} \ + -D prefix=`pwd`/install \ -D libdir=lib \ -D buildtype=debug \ -D build-tests=true \ @@ -32,7 +33,7 @@ cd _build meson configure ninja -j4 LC_ALL=C.UTF-8 ninja test -DESTDIR=$PWD/../install ninja install +ninja install cd .. if test -n "$MESON_SHADERDB"; then -- cgit v1.2.3