commit a3fa1dca5613199c66c49053c30b822660fe4f1d parent c4f60e561e9a486f442890954642d9a1e2f5f4ce Author: Cem Keylan <cem@ckyln.com> Date: Sat, 18 Apr 2020 21:24:45 +0300 xf86-video-intel: fixes Diffstat:
M | xorg/xf86-video-intel/build | | | 5 | +++-- |
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/xorg/xf86-video-intel/build b/xorg/xf86-video-intel/build @@ -1,11 +1,12 @@ #!/bin/sh -e export DESTDIR="$1" -export LDFLAGS="-Wl,-z,lazy" +export LDFLAGS="$LDFLAGS -Wl,-z,lazy" +export CFLAGS="$CFLAGS -fcommon" meson \ --prefix=/usr \ - --libexecdir=/usr/libexec \ + --libexecdir=/usr/lib \ -Ddefault-dri=3 \ -Dxvmc=false \ -Dvalgrind=false \