From 078f0e6e28b066c0ec9a5f53a759834a6a7083ea Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Thu, 27 Jun 2019 21:20:52 +0300 Subject: [PATCH] mesa: Use autotools. --- xorg/mesa/build | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/xorg/mesa/build b/xorg/mesa/build index 343ab643..1e2cbddc 100755 --- a/xorg/mesa/build +++ b/xorg/mesa/build @@ -1,15 +1,12 @@ #!/bin/sh -e -meson \ +./configure \ --prefix=/usr \ --sysconfdir=/etc \ --mandir=/usr/share/man \ --localstatedir=/var \ --buildtype=release \ - -Dplatforms=x11,drm \ - . output - -ninja -C output - -DESTDIR="$1" ninja -C output install + --with-platforms=x11,drm +make +make DESTDIR="$1" install