diff options
author | Cem Keylan <cem@ckyln.com> | 2021-04-01 14:48:43 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2021-04-01 14:48:43 +0300 |
commit | 11a05be4ac3bb1271762b1de1336124e7f7883e9 (patch) | |
tree | af3de6bd3b8118eaa526574ebaa102f559dacda9 /extra/mesa/build | |
parent | 83e38c53034aa640d582fa9598a34d4e33b031a4 (diff) | |
parent | 5166a933e0d9f5ca79d5789587cd7aab8f991270 (diff) | |
download | repository-11a05be4ac3bb1271762b1de1336124e7f7883e9.tar.gz |
Merge branch 'master' into libressl
Diffstat (limited to 'extra/mesa/build')
-rwxr-xr-x | extra/mesa/build | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/extra/mesa/build b/extra/mesa/build index 9d8984da..e640260e 100755 --- a/extra/mesa/build +++ b/extra/mesa/build @@ -29,6 +29,14 @@ python3 bin/git_sha1_gen.py --output include/git_sha1.h platforms=x11 cpt l wayland-protocols >/dev/null 2>&1 && platforms=$platforms,wayland +# Fix broken radeon object links +( + cd src/mesa/drivers/dri/r200 + find . -type l | while read -r link; do + ln -sf "$PWD/../radeon/$link" "$link" + done +) + meson \ --prefix=/usr \ --sysconfdir=/etc \ @@ -36,6 +44,7 @@ meson \ --localstatedir=/var \ --buildtype=release \ -Dplatforms="$platforms" \ + -Dzstd=false \ . output ninja -C output |