diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2014-09-28 22:45:10 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-09-28 22:45:10 +0200 |
commit | d0edceb9d4e9ba6536af5b6687e8523f1c5ea5d1 (patch) | |
tree | e1d3fe963fe01e252659a3e51e7177c6080f2c1f /package/mesa3d | |
parent | 66a2dcc058fc654d7bd5e873870af601544af58a (diff) |
mesa3d: fix build without dri drivers
If no dri drivers are enabled, then mesa shouldn't get built with dri
support.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Acked-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Diffstat (limited to 'package/mesa3d')
-rw-r--r-- | package/mesa3d/mesa3d.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/mesa3d/mesa3d.mk b/package/mesa3d/mesa3d.mk index 8fc507555..ec76872c8 100644 --- a/package/mesa3d/mesa3d.mk +++ b/package/mesa3d/mesa3d.mk @@ -75,7 +75,7 @@ endif ifeq ($(MESA3D_DRI_DRIVERS-y),) MESA3D_CONF_OPT += \ - --without-dri-drivers + --without-dri-drivers --without-dri else ifeq ($(BR2_PACKAGE_XPROTO_DRI3PROTO),y) MESA3D_DEPENDENCIES += xlib_libxshmfence xproto_dri3proto xproto_presentproto |