diff options
author | Eric Anholt <[email protected]> | 2019-07-23 11:12:07 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2019-07-25 08:56:19 -0700 |
commit | f68b98738750e5a526fd801824592b70cc6d8ce5 (patch) | |
tree | 90daa909dae082fc06a0918a7dbba5e7e7b99d0e /.gitlab-ci | |
parent | 494ecef6b42198ab6c3eaa8b3e5222643e1e44ff (diff) |
gitlab-ci: Always set libdir to lib/
I introduced libdir for cross-builds so we could point at the
resulting drivers without per-arch dependencies, but I'd rather not
have to type x86_64-linux-whatever for non-cross-builds either.
Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to '.gitlab-ci')
-rwxr-xr-x | .gitlab-ci/meson-build.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitlab-ci/meson-build.sh b/.gitlab-ci/meson-build.sh index 2bf51de1cd6..04b0189e254 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} \ + -D libdir=lib \ -D buildtype=debug \ -D build-tests=true \ -D libunwind=${UNWIND} \ |